Skip to content

Commit

Permalink
drop unique condition first
Browse files Browse the repository at this point in the history
  • Loading branch information
Archaeopteryx committed Oct 16, 2024
1 parent 2f33cc4 commit d3b59c6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AlterUniqueTogether(
name="performancealerttesting",
unique_together=None,
),
migrations.RemoveField(
model_name="performancealerttesting",
name="related_summary",
Expand All @@ -18,10 +22,6 @@ class Migration(migrations.Migration):
model_name="performancealerttesting",
name="summary",
),
migrations.AlterUniqueTogether(
name="performancealerttesting",
unique_together=None,
),
migrations.RemoveField(
model_name="performancealerttesting",
name="classifier",
Expand Down

0 comments on commit d3b59c6

Please sign in to comment.