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.
30 lines
962 B
30 lines
962 B
# Generated by Django 3.1.3 on 2020-12-02 10:15
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import wagtail.core.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('wagtailcore', '0059_apply_collection_ordering'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='SluzbyItems',
|
|
fields=[
|
|
('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')),
|
|
('objednani', models.BooleanField(default=True)),
|
|
('mozne_koplikace', wagtail.core.fields.RichTextField(blank=True)),
|
|
('cena', models.CharField(blank=True, max_length=200)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
bases=('wagtailcore.page',),
|
|
),
|
|
]
|
|
|