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.
27 lines
783 B
27 lines
783 B
# Generated by Django 3.2.23 on 2023-12-11 19:19
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('seminar', '0115_alter_nastaveni_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Nastaveni',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('cena_sous', models.IntegerField(default=1000, verbose_name='Účastnický poplatek za soustředění')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Nastavení semináře',
|
|
'db_table': 'seminar_nastaveni',
|
|
'managed': False,
|
|
},
|
|
),
|
|
]
|
|
|