19 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 2.2.12 on 2020-05-06 17:51
 | |
| 
 | |
| from django.db import migrations, models
 | |
| from tvorba.models import cislo_png_filename
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('seminar', '0081_auto_20200408_2221'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='cislo',
 | |
|             name='titulka_nahled',
 | |
|             field=models.ImageField(blank=True, help_text='Obrázek titulní strany, generuje se automaticky', null=True, upload_to=cislo_png_filename, verbose_name='Obrázek titulní strany'),
 | |
|         ),
 | |
|     ]
 |