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
2023-08-09 17:11:20 +02: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 ' ,
2023-07-31 19:13:56 +02: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
) ,
]