Files
RasadDam_Backend/apps/herd/migrations/0026_herdranchertemporary_city.py

19 lines
417 B
Python

# Generated by Django 5.0 on 2025-12-28 06:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('herd', '0025_herdranchertemporary_sync_status'),
]
operations = [
migrations.AddField(
model_name='herdranchertemporary',
name='city',
field=models.CharField(max_length=150, null=True),
),
]