0011_auto_20151213_1153.py
947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dictionary', '0010_auto_20151213_1155'),
('patterns', '0006_auto_20151213_1153'),
]
state_operations = [
migrations.AlterUniqueTogether(
name='patternexample',
unique_together=set([]),
),
migrations.RemoveField(
model_name='patternexample',
name='gender',
),
migrations.RemoveField(
model_name='patternexample',
name='lexeme',
),
migrations.RemoveField(
model_name='patternexample',
name='pattern',
),
migrations.DeleteModel(
name='PatternExample',
),
]
operations = [
migrations.SeparateDatabaseAndState(state_operations=state_operations)
]