CLOUDSTACK-528: Adding a corrective update to remove the extra space characters that exist after running older versions of schema-302to40.sql
Signed-off-by: Chip Childers <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/09d2fe6a Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/09d2fe6a Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/09d2fe6a Branch: refs/heads/vmware-storage-motion Commit: 09d2fe6a7ddc208f77edf931ed3d57b0afcc2055 Parents: bef3a2e Author: Chip Childers <[email protected]> Authored: Fri May 24 17:06:02 2013 +0100 Committer: Chip Childers <[email protected]> Committed: Fri May 24 17:07:01 2013 +0100 ---------------------------------------------------------------------- setup/db/db/schema-40to410.sql | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/09d2fe6a/setup/db/db/schema-40to410.sql ---------------------------------------------------------------------- diff --git a/setup/db/db/schema-40to410.sql b/setup/db/db/schema-40to410.sql index acc29a2..f0e8cf3 100644 --- a/setup/db/db/schema-40to410.sql +++ b/setup/db/db/schema-40to410.sql @@ -1653,3 +1653,7 @@ CREATE TABLE `cloud`.`netscaler_pod_ref` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 'eip.use.multiple.netscalers' , 'false', 'Should be set to true, if there will be multiple NetScaler devices providing EIP service in a zone'); + +UPDATE `cloud`.`configuration` set category='Advanced' where category='Advanced '; +UPDATE `cloud`.`configuration` set category='Hidden' where category='Hidden '; +
