Skip to content

Commit

Permalink
tasotarkistus: make changes into a single migration
Browse files Browse the repository at this point in the history
  • Loading branch information
NC-jsAhonen committed Nov 22, 2024
1 parent 8c907dc commit 0c07b8e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 50 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Generated by Django 4.2.16 on 2024-11-21 13:54
# Generated by Django 4.2.16 on 2024-11-21 14:14

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
("leasing", "0082_rent_start_price_index"),
("leasing", "0080_alter_contact_options"),
]

operations = [
Expand All @@ -24,9 +25,21 @@ class Migration(migrations.Migration):
verbose_name="Index point figure",
),
),
migrations.AlterField(
migrations.AddField(
model_name="rent",
name="old_dwellings_in_housing_companies_price_index",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.PROTECT,
related_name="+",
to="leasing.olddwellingsinhousingcompaniespriceindex",
verbose_name="Old dwellings in housing companies price index",
),
),
migrations.AddField(
model_name="rent",
name="start_price_index",
name="start_price_index_point_figure",
field=models.DecimalField(
decimal_places=1,
max_digits=8,
Expand Down

This file was deleted.

20 changes: 0 additions & 20 deletions leasing/migrations/0082_rent_start_price_index.py

This file was deleted.

0 comments on commit 0c07b8e

Please sign in to comment.