From 1cfbfab8162b82b30d797d4805112a75cfef3ce0 Mon Sep 17 00:00:00 2001 From: Alena Prokharchyk Date: Mon, 10 Feb 2014 17:15:50 -0800 Subject: [PATCH] CLOUDSTACK-6068: set display flag to true in service/disk_offering_details tables --- setup/db/db/schema-421to430.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/db/db/schema-421to430.sql b/setup/db/db/schema-421to430.sql index dc6131dd06c..b55e3881852 100644 --- a/setup/db/db/schema-421to430.sql +++ b/setup/db/db/schema-421to430.sql @@ -1097,5 +1097,5 @@ INSERT IGNORE INTO `cloud`.`configuration`(category, instance, component, name, ALTER TABLE `cloud`.`service_offering_details` CHANGE `display` `display` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'True if the detail can be displayed to the end user'; UPDATE `cloud`.`service_offering_details` set `display`=1 where id> 0; -ALTER TABLE `cloud`.`disk_offering_details` CHANGE `display` `display` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'True if the detail can be displayed to the end user'; -UPDATE `cloud`.`disk_offering_details` set `display`=1 where id> 0; +ALTER TABLE `cloud`.`disk_offering_details` CHANGE `display_detail` `display_detail` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'True if the detail can be displayed to the end user'; +UPDATE `cloud`.`disk_offering_details` set `display_detail`=1 where id> 0;