diff --git a/backend/core/migrations/0025_appliedcontrol_cost.py b/backend/core/migrations/0025_appliedcontrol_cost.py deleted file mode 100644 index b008363b8..000000000 --- a/backend/core/migrations/0025_appliedcontrol_cost.py +++ /dev/null @@ -1,21 +0,0 @@ -# Generated by Django 5.1 on 2024-09-08 20:02 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - dependencies = [ - ("core", "0024_appliedcontrol_owner"), - ] - - operations = [ - migrations.AddField( - model_name="appliedcontrol", - name="cost", - field=models.FloatField( - help_text="Cost of the measure (using globally-chosen currency)", - null=True, - verbose_name="Cost", - ), - ), - ] diff --git a/backend/core/migrations/0026_appliedcontrol_cost.py b/backend/core/migrations/0026_appliedcontrol_cost.py new file mode 100644 index 000000000..8f0e10a4d --- /dev/null +++ b/backend/core/migrations/0026_appliedcontrol_cost.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1 on 2024-09-13 10:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0025_complianceassessment_folder_riskassessment_folder_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='appliedcontrol', + name='cost', + field=models.FloatField(help_text='Cost of the measure (using globally-chosen currency)', null=True, verbose_name='Cost'), + ), + ]