Skip to content

Commit

Permalink
Add qualifiers in unique_together step 6
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 authored and pombredanne committed Dec 5, 2023
1 parent 39e5f3c commit 54731c1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions vulnerabilities/migrations/0051_alter_package_unique_together.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.1.7 on 2023-12-05 13:45

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("vulnerabilities", "0050_copy_qualifiers_temp_to_qualifiers"),
]

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

0 comments on commit 54731c1

Please sign in to comment.