0016_auto_20151213_1400.py
598 Bytes
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dictionary', '0015_auto_20151213_1328'),
]
database_operations = [
migrations.AlterModelTable('tablecell', 'tables_tablecell'),
migrations.AlterModelTable('exportcell', 'tables_exportcell'),
migrations.AlterModelTable('tableheader', 'tables_tableheader'),
]
operations = [
migrations.SeparateDatabaseAndState(
database_operations=database_operations)
]