19 lines
		
	
	
	
		
			461 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			461 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| from django.db import models, migrations
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('seminar', '0009_rename_imported_IDs'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='resitel',
 | |
|             name='rok_maturity',
 | |
|             field=models.IntegerField(null=True, verbose_name='rok maturity', blank=True),
 | |
|             preserve_default=True,
 | |
|         ),
 | |
|     ]
 |