0007_auto_20151215_1453.py
721 Bytes
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('patterns', '0006_auto_20151213_1153'),
]
operations = [
migrations.RenameField(
model_name='baseformlabel',
old_name='lexical_class',
new_name='inflection_type',
),
migrations.RenameField(
model_name='patterntype',
old_name='lexical_class',
new_name='inflection_type',
),
migrations.AlterUniqueTogether(
name='baseformlabel',
unique_together=set([('symbol', 'inflection_type')]),
),
]