Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
draft
Browse files Browse the repository at this point in the history
  • Loading branch information
DonHaul committed Aug 23, 2024
1 parent 3167432 commit b8b534f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backoffice/backoffice/workflows/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Workflow(models.Model):


class WorkflowTicket(models.Model):
workflow = models.ForeignKey(
workflow_id = models.ForeignKey(
Workflow, related_name="tickets", on_delete=models.CASCADE
)
ticket_id = models.CharField(
Expand All @@ -51,7 +51,7 @@ class Decision(models.Model):
user = models.ForeignKey(
User,
to_field="email",
related_name="decisions",
related_name="tickets",
db_column="email",
on_delete=models.CASCADE,
)
Expand Down

0 comments on commit b8b534f

Please sign in to comment.