35 lines
		
	
	
	
		
			915 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			915 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| from django.db import models, migrations
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('seminar', '0017_texty_problemu_minor'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.CreateModel(
 | |
|             name='ProblemNavrh',
 | |
|             fields=[
 | |
|             ],
 | |
|             options={
 | |
|                 'verbose_name': 'Probl\xe9m (n\xe1vrh)',
 | |
|                 'proxy': True,
 | |
|                 'verbose_name_plural': 'Probl\xe9my (n\xe1vrhy)',
 | |
|             },
 | |
|             bases=('seminar.problem',),
 | |
|         ),
 | |
|         migrations.CreateModel(
 | |
|             name='ProblemZadany',
 | |
|             fields=[
 | |
|             ],
 | |
|             options={
 | |
|                 'verbose_name': 'Probl\xe9m (zadan\xfd)',
 | |
|                 'proxy': True,
 | |
|                 'verbose_name_plural': 'Probl\xe9my (zadan\xe9)',
 | |
|             },
 | |
|             bases=('seminar.problem',),
 | |
|         ),
 | |
|     ]
 |