-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tasotarkistus: renaming of model attributes
- Loading branch information
1 parent
580681b
commit 8c907dc
Showing
4 changed files
with
54 additions
and
11 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
leasing/migrations/0083_remove_indexnumberyearly_number_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,37 @@ | ||
# Generated by Django 4.2.16 on 2024-11-21 13:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("leasing", "0082_rent_start_price_index"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="indexnumberyearly", | ||
name="number", | ||
), | ||
migrations.AddField( | ||
model_name="indexnumberyearly", | ||
name="point_figure", | ||
field=models.DecimalField( | ||
decimal_places=1, | ||
max_digits=8, | ||
null=True, | ||
verbose_name="Index point figure", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="rent", | ||
name="start_price_index", | ||
field=models.DecimalField( | ||
decimal_places=1, | ||
max_digits=8, | ||
null=True, | ||
verbose_name="Start price index point figure", | ||
), | ||
), | ||
] |
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