Skip to content

Commit 0084233

Browse files
committed
Update migration file
Signed-off-by: ziad hany <ziadhany2016@gmail.com>
1 parent b25eb11 commit 0084233

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

vulnerabilities/migrations/0104_packagecommitpatch_patch_and_more.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 4.2.25 on 2025-12-02 00:23
1+
# Generated by Django 4.2.25 on 2025-12-05 09:16
22

33
from django.db import migrations, models
44

@@ -84,6 +84,22 @@ class Migration(migrations.Migration):
8484
model_name="impactedpackage",
8585
name="fixed_by_commits",
8686
),
87+
migrations.AlterField(
88+
model_name="advisoryreference",
89+
name="reference_type",
90+
field=models.CharField(
91+
blank=True,
92+
choices=[
93+
("advisory", "Advisory"),
94+
("exploit", "Exploit"),
95+
("commit", "Commit"),
96+
("mailing_list", "Mailing List"),
97+
("bug", "Bug"),
98+
("other", "Other"),
99+
],
100+
max_length=20,
101+
),
102+
),
87103
migrations.DeleteModel(
88104
name="CodeCommit",
89105
),

0 commit comments

Comments
 (0)