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.
29 lines
793 B
29 lines
793 B
1 year ago
|
# Generated by Django 3.2.22 on 2023-10-15 17:44
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('sifrovacka', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='odpoveducastnika',
|
||
|
options={'ordering': ['-timestamp']},
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='odpoveducastnika',
|
||
|
name='timestamp',
|
||
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='Timestamp'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='odpoveducastnika',
|
||
|
name='odpoved',
|
||
|
field=models.TextField(verbose_name='Tajenka bez diakritiky'),
|
||
|
),
|
||
|
]
|