Skip to content

Commit

Permalink
Merge pull request #1097 from TG1999/add_migration_0039
Browse files Browse the repository at this point in the history
Add migration for adding apache tomcat option in severity scoring
  • Loading branch information
TG1999 authored Jan 25, 2023
2 parents 6a85107 + 6e5931b commit e66f1d5
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.0.7 on 2023-01-25 15:16

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('vulnerabilities', '0038_remove_corrupted_advisories_with_incorrect_refs_and_severity'),
]

operations = [
migrations.AlterField(
model_name='vulnerabilityseverity',
name='scoring_system',
field=models.CharField(choices=[('cvssv2', 'CVSSv2 Base Score'), ('cvssv3', 'CVSSv3 Base Score'), ('cvssv3.1', 'CVSSv3.1 Base Score'), ('rhbs', 'RedHat Bugzilla severity'), ('rhas', 'RedHat Aggregate severity'), ('archlinux', 'Archlinux Vulnerability Group Severity'), ('cvssv3.1_qr', 'CVSSv3.1 Qualitative Severity Rating'), ('generic_textual', 'Generic textual severity rating'), ('apache_httpd', 'Apache Httpd Severity'), ('apache_tomcat', 'Apache Tomcat Severity')], help_text='Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity ', max_length=50),
),
]

0 comments on commit e66f1d5

Please sign in to comment.