Skip to content

Commit f0f7f67

Browse files
committed
add a migrations file
Signed-off-by: Ziad <[email protected]>
1 parent 5165913 commit f0f7f67

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 4.0.4 on 2022-06-08 16:28
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('vulnerabilities', '0015_alter_vulnerabilityseverity_unique_together_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='vulnerabilityseverity',
15+
name='scoring_elements',
16+
field=models.CharField(help_text='Supporting a scoring elements as a string For example a CVSS vector Important, High, Medium ,Low.Typically used to compute the value', max_length=100, null=True),
17+
),
18+
migrations.AlterField(
19+
model_name='vulnerabilityseverity',
20+
name='value',
21+
field=models.CharField(help_text='Score Value expressed as a number such as 9.0 that can be sorted or compared', max_length=50),
22+
),
23+
]

0 commit comments

Comments
 (0)