Created
September 29, 2016 08:50
-
-
Save will-ockmore/2faa7b97207003d667f8cdf1e7e374a8 to your computer and use it in GitHub Desktop.
Migration from original app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from django.db import migrations | |
class Migration(migrations.Migration): | |
dependencies = [ | |
('users', '0011_auto_20160922_1106') | |
] | |
database_operations = [ | |
migrations.AlterModelTable('StaffToDo', 'todos_stafftodos'), | |
migrations.AlterModelTable('HistoricalStaffToDo', 'todos_historicalstafftodos') | |
] | |
state_operations = [ | |
migrations.DeleteModel('StaffToDo'), | |
migrations.DeleteModel('HistoricalStaffToDo') | |
] | |
operations = [ | |
migrations.SeparateDatabaseAndState( | |
database_operations=database_operations, | |
state_operations=state_operations) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment