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:
parent
b808c6684a
commit
7b7a518050
1 changed files with 6 additions and 3 deletions
|
|
@ -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'),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue