diff options
| author | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-08-31 11:54:30 -0700 |
|---|---|---|
| committer | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-08-31 11:54:30 -0700 |
| commit | 6b67b2f391830da52dea5cd84bd564bab692f365 (patch) | |
| tree | 0d3fc90f2a20f0eceec6a65d7ee9621242ebda81 /nova/db | |
| parent | 2a2aa10316abe9135541198bddd4c189976eb2fd (diff) | |
zone_add fixed to support zone name
Diffstat (limited to 'nova/db')
| -rw-r--r-- | nova/db/sqlalchemy/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nova/db/sqlalchemy/models.py b/nova/db/sqlalchemy/models.py index f8feb0b4f..dd447457b 100644 --- a/nova/db/sqlalchemy/models.py +++ b/nova/db/sqlalchemy/models.py @@ -847,6 +847,7 @@ class Zone(BASE, NovaBase): """Represents a child zone of this zone.""" __tablename__ = 'zones' id = Column(Integer, primary_key=True) + name = Column(String(255)) api_url = Column(String(255)) username = Column(String(255)) password = Column(String(255)) |
