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
629 B
18 lines
629 B
# Generated by Django 4.2.16 on 2024-11-12 18:55
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tvorba', '0006_alter_deadline_deadline'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='deadline',
|
|
name='typ',
|
|
field=models.CharField(choices=[('cisla', 'Deadline celého čísla'), ('cislaasous', 'Sousový a celočíslový deadline'), ('prvni', 'První deadline'), ('prvniasous', 'Sousový a první deadline'), ('sous', 'Sousový deadline')], max_length=32, verbose_name='typ deadlinu'),
|
|
),
|
|
]
|
|
|