19 lines
534 B
Python
19 lines
534 B
Python
# Generated by Django 5.1.1 on 2024-11-21 21:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('fellchensammlung', '0025_alter_animal_sex'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='animal',
|
|
name='sex',
|
|
field=models.CharField(choices=[('F', 'Weiblich'), ('M', 'Männlich'), ('M_N', 'Männlich, kastriert'), ('F_N', 'Weiblich, kastriert'), ('I', 'Intergeschlechtlich')], max_length=20),
|
|
),
|
|
]
|