Tomas Gavenciak
10 years ago
1 changed files with 36 additions and 0 deletions
@ -0,0 +1,36 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
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',), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue