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.
23 lines
584 B
23 lines
584 B
# Generated by Django 3.2.8 on 2021-10-14 08:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('novinky', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='novinka',
|
|
options={'verbose_name': 'Novinka', 'verbose_name_plural': 'Novinky'},
|
|
),
|
|
migrations.AddField(
|
|
model_name='novinka',
|
|
name='titulek',
|
|
field=models.CharField(default='', max_length=100),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|