-
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.
Users want to get rid of it. This feature is not used at all currently or in the future, and historically was used only in one (1) lease.
- Loading branch information
1 parent
d772e49
commit f15b78a
Showing
10 changed files
with
54 additions
and
551 deletions.
There are no files selected for viewing
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
33 changes: 33 additions & 0 deletions
33
leasing/migrations/0082_remove_rent_seasonal_end_day_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,33 @@ | ||
# Generated by Django 4.2.16 on 2024-11-22 07:38 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
""" | ||
The Seasonal Rent (kausivuokra) feature is not desired by the users anymore. | ||
In the past it has only been used in a single lease, which has already expired. | ||
""" | ||
|
||
dependencies = [ | ||
("leasing", "0081_serviceunit_use_rent_override_receivable_type"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="rent", | ||
name="seasonal_end_day", | ||
), | ||
migrations.RemoveField( | ||
model_name="rent", | ||
name="seasonal_end_month", | ||
), | ||
migrations.RemoveField( | ||
model_name="rent", | ||
name="seasonal_start_day", | ||
), | ||
migrations.RemoveField( | ||
model_name="rent", | ||
name="seasonal_start_month", | ||
), | ||
] |
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
Oops, something went wrong.