From fb46a7f1d66095c9a1d2746d42ad684e84252a9c Mon Sep 17 00:00:00 2001 From: anthony Date: Fri, 5 Aug 2011 11:24:24 -0700 Subject: [PATCH] bug 10849: storage ip is not require NOT NULL status 10849: resolved fixed --- setup/db/db/schema-229to2210.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/db/db/schema-229to2210.sql b/setup/db/db/schema-229to2210.sql index e6ce8752781..c6f8b389036 100644 --- a/setup/db/db/schema-229to2210.sql +++ b/setup/db/db/schema-229to2210.sql @@ -13,4 +13,6 @@ ALTER TABLE `cloud`.`domain_router` ADD COLUMN `redundant_state` varchar(64) NOT ALTER TABLE `cloud`.`cluster` ADD COLUMN `managed_state` varchar(32) NOT NULL DEFAULT 'Managed' COMMENT 'Is this cluster managed by cloudstack'; +ALTER TABLE `cloud`.`host` MODIFY `storage_ip_address` char(40); + INSERT IGNORE INTO configuration VALUES ('Network', 'DEFAULT', 'management-server', 'network.redundantrouter', 'false', 'enable/disable redundant virtual router');