24 lines
582 B
Python
24 lines
582 B
Python
|
|
# Generated by Django 4.2.19 on 2025-02-27 08:30
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('app', '0003_poultry_allowinsert_poultry_allowupdate_and_more'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='poultryhatching',
|
||
|
|
name='Date',
|
||
|
|
field=models.DateTimeField(null=True),
|
||
|
|
),
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='poultryhatching',
|
||
|
|
name='HatchingAge',
|
||
|
|
field=models.IntegerField(default=1),
|
||
|
|
),
|
||
|
|
]
|