24 lines
		
	
	
	
		
			661 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			661 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('seminar', '0041_konfery'),
 | |
|         ('korektury', '0013_rename_autor_org'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='korekturovanepdf',
 | |
|             name='org',
 | |
|             field=models.ForeignKey(default=None,
 | |
|                   blank=True,
 | |
|                   to='seminar.Organizator',
 | |
|                   help_text=b'Zodpov\xc4\x9bdn\xc3\xbd\
 | |
|                           organiz\xc3\xa1tor za obsah',
 | |
|                   null=True, on_delete=models.CASCADE),
 | |
|         ),
 | |
|     ]
 |