From f423f555e9267e04149e255290dd00a381dcb9ea Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 9 Apr 2013 11:06:48 -0400 Subject: [PATCH] change field name --- plstackapi/planetstack/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plstackapi/planetstack/models.py b/plstackapi/planetstack/models.py index 8ecc144..e796614 100644 --- a/plstackapi/planetstack/models.py +++ b/plstackapi/planetstack/models.py @@ -34,7 +34,7 @@ class Role(PlCoreBase): super(Role, self).save() class Site(PlCoreBase): - site_id = models.CharField(max_length=200, help_text="Keystone tenant id") + tenant_id = models.CharField(max_length=200, help_text="Keystone tenant id") name = models.CharField(max_length=200, help_text="Name for this Site") site_url = models.URLField(null=True, blank=True, max_length=512, help_text="Site's Home URL Page") enabled = models.BooleanField(default=True, help_text="Status for this Site") -- 2.47.0