2020-04-08 23:09:25 +02:00
# Generated by Django 2.2.9 on 2020-04-08 20:21
from django . db import migrations , models
2024-11-05 19:56:07 +01:00
from tvorba . models import cislo_pdf_filename
2020-04-08 23:09:25 +02:00
class Migration ( migrations . Migration ) :
dependencies = [
2020-04-15 21:07:29 +02:00
( ' seminar ' , ' 0080_zruseni_claneknode_a_konferanode ' ) ,
2020-04-08 23:09:25 +02:00
]
operations = [
migrations . AddField (
model_name = ' cislo ' ,
name = ' titulka_nahled ' ,
field = models . ImageField ( blank = True , help_text = ' Obrázek titulní strany, generuje se automaticky ' , null = True , upload_to = ' ' , verbose_name = ' Obrázek titulní strany ' ) ,
) ,
migrations . AlterField (
model_name = ' cislo ' ,
name = ' pdf ' ,
2024-11-05 19:56:07 +01:00
field = models . FileField ( blank = True , help_text = ' PDF čísla, které si mohou řešitelé stáhnout ' , null = True , upload_to = cislo_pdf_filename , verbose_name = ' pdf ' ) ,
2020-04-08 23:09:25 +02:00
) ,
]