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;