-
Notifications
You must be signed in to change notification settings - Fork 10
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 #2190 from City-of-Helsinki/HL-919-migrations
Add missing pay subsidy migrations
- Loading branch information
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
backend/benefit/applications/migrations/0039_alter_paysubsidy_percentages.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,33 @@ | ||
# Generated by Django 3.2.18 on 2023-08-24 11:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('applications', '0038_reviewstate_approval'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='application', | ||
name='additional_pay_subsidy_percent', | ||
field=models.IntegerField(blank=True, choices=[(50, '50%'), (70, '70%'), (100, '100%')], null=True, verbose_name='Pay subsidy percent for second pay subsidy grant'), | ||
), | ||
migrations.AlterField( | ||
model_name='application', | ||
name='pay_subsidy_percent', | ||
field=models.IntegerField(blank=True, choices=[(50, '50%'), (70, '70%'), (100, '100%')], null=True, verbose_name='Pay subsidy percent'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalapplication', | ||
name='additional_pay_subsidy_percent', | ||
field=models.IntegerField(blank=True, choices=[(50, '50%'), (70, '70%'), (100, '100%')], null=True, verbose_name='Pay subsidy percent for second pay subsidy grant'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalapplication', | ||
name='pay_subsidy_percent', | ||
field=models.IntegerField(blank=True, choices=[(50, '50%'), (70, '70%'), (100, '100%')], null=True, verbose_name='Pay subsidy percent'), | ||
), | ||
] |
33 changes: 33 additions & 0 deletions
33
backend/benefit/calculator/migrations/0013_alter_paysubsidy_percentages.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,33 @@ | ||
# Generated by Django 3.2.18 on 2023-08-24 11:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('calculator', '0012_history_date_format_changes'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='calculation', | ||
name='state_aid_max_percentage', | ||
field=models.IntegerField(blank=True, choices=[(50, '50%'), (70, '70%'), (100, '100%')], default=None, null=True, verbose_name='State aid maximum %'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalcalculation', | ||
name='state_aid_max_percentage', | ||
field=models.IntegerField(blank=True, choices=[(50, '50%'), (70, '70%'), (100, '100%')], default=None, null=True, verbose_name='State aid maximum %'), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalpaysubsidy', | ||
name='pay_subsidy_percent', | ||
field=models.IntegerField(choices=[(50, '50%'), (70, '70%'), (100, '100%')], verbose_name='Pay subsidy percent'), | ||
), | ||
migrations.AlterField( | ||
model_name='paysubsidy', | ||
name='pay_subsidy_percent', | ||
field=models.IntegerField(choices=[(50, '50%'), (70, '70%'), (100, '100%')], verbose_name='Pay subsidy percent'), | ||
), | ||
] |