mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6068: set display flag to true in service/disk_offering_details tables
This commit is contained in:
parent
aff22869cc
commit
1cfbfab816
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue