Skip to content

Commit

Permalink
Remove qualifiers from unique_together step 4
Browse files Browse the repository at this point in the history
Reference: aboutcode-org#1327
Signed-off-by: Tushar Goel <[email protected]>
Signed-off-by: Philippe Ombredanne <[email protected]>
  • Loading branch information
TG1999 committed Dec 26, 2023
1 parent b8e7839 commit 923ebd7
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 4.1.7 on 2023-12-05 13:43

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("vulnerabilities", "0048_alter_package_unique_together"),
]

operations = [
migrations.AlterUniqueTogether(
name="package",
unique_together={
("type", "namespace", "name", "version", "subpath", "qualifiers_temp")
},
),
migrations.AlterField(
model_name="package",
name="qualifiers",
field=models.CharField(
blank=True,
help_text="Extra qualifying data for a package such as the name of an OS, architecture, distro, etc.",
max_length=1024,
),
),
]

0 comments on commit 923ebd7

Please sign in to comment.