Browse Source

Migrace pro proxy modely

remotes/origin/feincms deploy-prod-2015-06-02-01-30-gavento
Tomas Gavenciak 9 years ago
parent
commit
e3a7829c44
  1. 36
      seminar/migrations/0018_problemnavrh_problemzadany.py

36
seminar/migrations/0018_problemnavrh_problemzadany.py

@ -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…
Cancel
Save