Features: 1) Add 'district' field to 'address' model in migrations;

Fixes: 1) Add missing import for models in migration file;

Extra: 1) Remove autogenerated timestamp comment from migration file;
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-19 17:05:47 +03:00
parent b808c6684a
commit 7b7a518050

View file

@ -1,6 +1,4 @@
# Generated by Django 5.2 on 2025-05-19 14:02 from django.db import migrations, models
from django.db import migrations
class Migration(migrations.Migration): class Migration(migrations.Migration):
@ -9,4 +7,9 @@ class Migration(migrations.Migration):
] ]
operations = [ operations = [
migrations.AddField(
model_name='address',
name='district',
field=models.CharField(max_length=255, null=True, verbose_name='district'),
),
] ]