26 lines
		
	
	
	
		
			833 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			833 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| from django.db import models, migrations
 | |
| import django.utils.timezone
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('korektury', '0002_auto_20151202_2351'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='korekturovanepdf',
 | |
|             name='cas',
 | |
|             field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'\xc4\x8cas vlo\xc5\xbeen\xc3\xad PDF', verbose_name='\u010das vlo\u017een\xed PDF'),
 | |
|             preserve_default=True,
 | |
|         ),
 | |
|         migrations.AddField(
 | |
|             model_name='korekturovanepdf',
 | |
|             name='stran',
 | |
|             field=models.IntegerField(default=0, help_text=b'Po\xc4\x8det stran PDF', verbose_name='po\u010det stran'),
 | |
|             preserve_default=True,
 | |
|         ),
 | |
|     ]
 |