18 lines
		
	
	
	
		
			513 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			513 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 4.2.20 on 2025-04-23 18:37
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('galerie', '0013_post_split_soustredeni'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='galerie',
 | |
|             name='zobrazit',
 | |
|             field=models.IntegerField(choices=[(0, 'Vždy'), (1, 'Organizátorům'), (3, 'Účastníkům a orgům'), (2, 'Nikdy')], default=1, verbose_name='Zobrazit?'),
 | |
|         ),
 | |
|     ]
 | 
