From eb8975670f28c0a1770b2425d8dcb82e0c1ca69a Mon Sep 17 00:00:00 2001 From: frank Date: Mon, 26 Mar 2012 14:52:11 -0700 Subject: [PATCH] Bug 14497 - 3.0->3.0.1Upgrade: Defualt value for "resource_state" field in host table differs from upgraded to fresh installed 3.0.1 schema. status 14497: resolved fixed reviewed-by: edison Conflicts: setup/db/db/schema-30to301.sql --- setup/db/db/schema-30to301.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup/db/db/schema-30to301.sql b/setup/db/db/schema-30to301.sql index 70291efa569..75a7160bb0f 100755 --- a/setup/db/db/schema-30to301.sql +++ b/setup/db/db/schema-30to301.sql @@ -27,3 +27,7 @@ INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Account Defaults', 'DEFAULT' UPDATE snapshots SET removed=now() WHERE removed IS NULL AND sechost_id IN (SELECT id FROM host WHERE type='SecondaryStorage' AND removed IS NOT NULL); ALTER TABLE `cloud_usage`.`usage_ip_address` MODIFY COLUMN `is_system` smallint(1) NOT NULL default '0'; + +ALTER TABLE `cloud_usage`.`account` ADD CONSTRAINT `uc_account__uuid` UNIQUE (`uuid`); + +ALTER TABLE `cloud`.`host` ALTER COLUMN `resource_state` SET DEFAULT 'Enabled';