From: Sapan Bhatia Date: Thu, 18 Sep 2014 04:13:46 +0000 (-0400) Subject: Added backend_type field to migrations X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=593e3564ed33c7336fc7157caaf6b247f78f3580;hp=36a09ed129a3b5e032ae6decce08bdea7aa41160;p=plstackapi.git Added backend_type field to migrations --- diff --git a/planetstack/core/models/site.py b/planetstack/core/models/site.py index fe7fb93..bc4c5ca 100644 --- a/planetstack/core/models/site.py +++ b/planetstack/core/models/site.py @@ -87,6 +87,7 @@ class Deployment(PlCoreBase): admin_password = models.CharField(max_length=200, null=True, blank=True, help_text="Password of theadmin user at this deployment") admin_tenant = models.CharField(max_length=200, null=True, blank=True, help_text="Name of the tenant the admin user belongs to") auth_url = models.CharField(max_length=200, null=True, blank=True, help_text="Auth url for the deployment") + backend_type = models.CharField(max_length=200, null=True, blank=True, help_text="Type of deployment, e.g. EC2, OpenStack, or OpenStack version") # smbaker: the default of 'allow all' is intended for evolutions of existing # deployments. When new deployments are created via the GUI, they are