Skip to content

Commit 1bfcc81

Browse files
rebase migration
1 parent 443210e commit 1bfcc81

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Generated by Django 5.1.8 on 2025-05-14 06:35
2+
3+
import dojo.validators
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('dojo', '0229_alter_finding_unique_id_from_tool'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='finding',
16+
name='cvssv3',
17+
field=models.TextField(help_text='Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this finding.', max_length=117, null=True, validators=[dojo.validators.cvss3_validator], verbose_name='CVSS v3 vector'),
18+
),
19+
migrations.AlterField(
20+
model_name='finding_template',
21+
name='cvssv3',
22+
field=models.TextField(help_text='Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this finding.', max_length=117, null=True, validators=[dojo.validators.cvss3_validator], verbose_name='CVSS v3 vector'),
23+
),
24+
]

0 commit comments

Comments
 (0)