Fixes: 1) Add missing import for models in migration file; Extra: 1) Remove autogenerated timestamp comment from migration file;
15 lines
410 B
Python
15 lines
410 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('geo', '0002_alter_address_api_response_alter_address_location_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='address',
|
|
name='district',
|
|
field=models.CharField(max_length=255, null=True, verbose_name='district'),
|
|
),
|
|
]
|