change livestock types weight
This commit is contained in:
18
apps/livestock/migrations/0012_livestocktype_weight_type.py
Normal file
18
apps/livestock/migrations/0012_livestocktype_weight_type.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.0 on 2025-07-14 08:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('livestock', '0011_remove_livestock_age_by_day_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='livestocktype',
|
||||
name='weight_type',
|
||||
field=models.CharField(choices=[('L', 'Light'), ('H', 'Heavy')], max_length=50, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user