New migration scripts for properly renaming models and fields
diff --git a/planetstack/core/migrations/0006_auto_20141111_2314.py b/planetstack/core/migrations/0006_auto_20141111_2314.py
new file mode 100644
index 0000000..37a197d
--- /dev/null
+++ b/planetstack/core/migrations/0006_auto_20141111_2314.py
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('core', '0005_auto_20141111_2311'),
+ ]
+
+ operations = [
+ migrations.DeleteModel(
+ name='ImageDeployments',
+ ),
+ migrations.DeleteModel(
+ name='SiteDeployments',
+ ),
+ migrations.DeleteModel(
+ name='SliceDeployments',
+ ),
+ migrations.DeleteModel(
+ name='UserDeployments',
+ ),
+ ]