Skip to content

Commit

Permalink
Add migration for version update
Browse files Browse the repository at this point in the history
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
  • Loading branch information
TG1999 committed Dec 27, 2023
1 parent 8996dab commit 4375ac9
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 4.1.13 on 2023-12-27 11:55

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("vulnerabilities", "0044_alter_packagechangelog_options_and_more"),
]

operations = [
migrations.AlterField(
model_name="packagechangelog",
name="software_version",
field=models.CharField(
default="33.6.6",
help_text="Version of the software at the time of change",
max_length=100,
),
),
migrations.AlterField(
model_name="vulnerabilitychangelog",
name="software_version",
field=models.CharField(
default="33.6.6",
help_text="Version of the software at the time of change",
max_length=100,
),
),
]

0 comments on commit 4375ac9

Please sign in to comment.