New migration scripts for properly renaming models and fields
authorSapan Bhatia <sapanb@cs.princeton.edu>
Wed, 12 Nov 2014 04:19:22 +0000 (23:19 -0500)
committerSapan Bhatia <sapanb@cs.princeton.edu>
Wed, 12 Nov 2014 04:19:22 +0000 (23:19 -0500)
planetstack/core/migrations/0006_auto_20141111_2314.py [new file with mode: 0644]

diff --git a/planetstack/core/migrations/0006_auto_20141111_2314.py b/planetstack/core/migrations/0006_auto_20141111_2314.py
new file mode 100644 (file)
index 0000000..37a197d
--- /dev/null
@@ -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',
+        ),
+    ]