From: Sapan Bhatia Date: Wed, 12 Nov 2014 04:19:22 +0000 (-0500) Subject: New migration scripts for properly renaming models and fields X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=e3738d8335ae9ac7cd7ad0dfd1f08bfc4fd75c41;p=plstackapi.git 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', + ), + ]