Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
525 B
18 lines
525 B
# Generated by Django 2.2.28 on 2023-01-30 19:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0110_resitel_prezdivka'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='resitel',
|
|
name='zasilat',
|
|
field=models.CharField(choices=[('domu', 'Domů'), ('do_skoly', 'Do školy'), ('nikam', 'Nezasílat papírově')], default='domu', max_length=32, verbose_name='kam zasílat'),
|
|
),
|
|
]
|
|
|