change livestock types weight

This commit is contained in:
2025-07-14 11:38:46 +03:30
parent 2c0e55a616
commit a5ce81efe7
4 changed files with 31 additions and 1 deletions

View 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),
),
]