first commit
This commit is contained in:
23
app/migrations/0024_poultry_city_poultry_province.py
Normal file
23
app/migrations/0024_poultry_city_poultry_province.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 4.2.19 on 2025-04-07 09:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0023_killhouse_cityid_killhouse_provinceid'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='poultry',
|
||||
name='City',
|
||||
field=models.CharField(blank=True, max_length=500, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='poultry',
|
||||
name='Province',
|
||||
field=models.CharField(blank=True, max_length=500, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user