21 lines
485 B
Python
21 lines
485 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
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,
|
||
|
),
|
||
|
]
|