Skip to content

Commit 8696645

Browse files
TG1999ziadhany
authored andcommitted
Revert "Revert "Add support for reference_type (#1502)" (#1517)"
This reverts commit 6727786. Signed-off-by: ziadhany <ziadhany2016@gmail.com>
1 parent 1561efe commit 8696645

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 4.1.13 on 2024-07-18 21:56
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("vulnerabilities", "0057_kev"),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name="vulnerabilityreference",
15+
name="reference_type",
16+
field=models.CharField(
17+
blank=True,
18+
choices=[
19+
("advisory", "Advisory"),
20+
("exploit", "Exploit"),
21+
("mailing_list", "Mailing List"),
22+
("bug", "Bug"),
23+
("other", "Other"),
24+
],
25+
max_length=20,
26+
),
27+
),
28+
]

0 commit comments

Comments
 (0)