18 lines
471 B
Python
18 lines
471 B
Python
from django.db import migrations
|
|
from django.db import migrations
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
"""
|
|
نشانگر تغییر اپ label از soil_data به location_data.
|
|
پیش از اجرای این migration، دستور زیر را اجرا کنید:
|
|
python manage.py rename_soil_data_label
|
|
"""
|
|
|
|
dependencies = [
|
|
("location_data", "0002_soildepthdata_refactor"),
|
|
]
|
|
|
|
operations = []
|