0015_auto_20151213_1328.py
1.76 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dictionary', '0014_auto_20151213_1328'),
('tables', '0002_tabletemplate'),
]
state_operations = [
migrations.RemoveField(
model_name='tabletemplate',
name='attribute_values',
),
migrations.RemoveField(
model_name='tabletemplate',
name='attributes',
),
migrations.RemoveField(
model_name='tabletemplate',
name='cell_attributes',
),
migrations.RemoveField(
model_name='tabletemplate',
name='parts_of_speech',
),
migrations.RemoveField(
model_name='tabletemplate',
name='pattern_types',
),
migrations.RemoveField(
model_name='tabletemplate',
name='variant',
),
migrations.DeleteModel(
name='TableTemplate',
),
]
operations = [
migrations.AlterField(
model_name='exportcell',
name='table_template',
field=models.ForeignKey(related_name='export_cells', to='tables.TableTemplate'),
),
migrations.AlterField(
model_name='tablecell',
name='table_template',
field=models.ForeignKey(related_name='table_cells', to='tables.TableTemplate'),
),
migrations.AlterField(
model_name='tableheader',
name='table_template',
field=models.ForeignKey(related_name='headers', to='tables.TableTemplate'),
),
migrations.SeparateDatabaseAndState(state_operations=state_operations),
]