-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1660 from aboutcode-org/1659-no-migration-for-bump
Avoid migrations on version bumps
- Loading branch information
Showing
4 changed files
with
79 additions
and
22 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
vulnerabilities/migrations/0083_alter_packagechangelog_software_version_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-15 11:34 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("vulnerabilities", "0082_vulnerability_exploitability_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="packagechangelog", | ||
name="software_version", | ||
field=models.CharField( | ||
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( | ||
help_text="Version of the software at the time of change", max_length=100 | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ | |
|
||
import os | ||
import sys | ||
import warnings | ||
from pathlib import Path | ||
|
||
__version__ = "34.3.2" | ||
|
||
|