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.
20 lines
508 B
20 lines
508 B
# Generated by Django 3.2 on 2021-05-11 18:15
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kolotoc', '0004_auto_20210511_2002'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='kolotoc',
|
|
name='popisek',
|
|
field=models.CharField(default=django.utils.timezone.now, max_length=64, verbose_name='Popisek'),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|