Skip to content

Commit

Permalink
fix: add migration dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobernardoaf committed Jan 23, 2025
1 parent 9b6a45c commit 1823ade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Migration(migrations.Migration):

dependencies = [
("orgs", "0153_invitation_role_code_invitation_team_and_more"),
("tickets", "0068_backfill_default_teams")
("tickets", "0068_backfill_default_teams"),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion temba/tickets/migrations/0071_backfill_item_counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ class Migration(migrations.Migration):

atomic = False

dependencies = [("tickets", "0070_update_triggers")]
dependencies = [("tickets", "0070_update_triggers"), ("orgs", "0156_itemcount")]

operations = [migrations.RunPython(backfill_item_counts, migrations.RunPython.noop)]

0 comments on commit 1823ade

Please sign in to comment.