25 lines
		
	
	
	
		
			849 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			849 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 2.2.9 on 2020-04-08 20:21
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| from tvorba.models import cislo_pdf_filename
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('seminar', '0080_zruseni_claneknode_a_konferanode'),
 | |
|     ]
 | |
| 
 | |
|     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',
 | |
|             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'),
 | |
|         ),
 | |
|     ]
 |