Skip to content

Commit

Permalink
Add qualifiers_temp in unique_together step 3
Browse files Browse the repository at this point in the history
Reference: #1327
Signed-off-by: Tushar Goel <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
  • Loading branch information
TG1999 committed Dec 20, 2023
1 parent a63177a commit 3a63675
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions vulnerabilities/migrations/0048_alter_package_unique_together.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.1.7 on 2023-12-05 13:42

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("vulnerabilities", "0047_copy_qualifiers_to_qualifiers_temp"),
]

operations = [
migrations.AlterUniqueTogether(
name="package",
unique_together={
("type", "namespace", "name", "version", "qualifiers", "subpath", "qualifiers_temp")
},
),
]

0 comments on commit 3a63675

Please sign in to comment.