Features: 1) Add new migration file for geo app to track database changes;
Fixes: ; Extra: 1) Generated migration skeleton for district field addition;
This commit is contained in:
parent
b685c2a2b8
commit
b808c6684a
1 changed files with 12 additions and 0 deletions
12
geo/migrations/0003_add_district_field.py
Normal file
12
geo/migrations/0003_add_district_field.py
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
# Generated by Django 5.2 on 2025-05-19 14:02
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
('geo', '0002_alter_address_api_response_alter_address_location_and_more'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
]
|
||||||
Loading…
Reference in a new issue