You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by al...@apache.org on 2014/02/11 02:14:59 UTC

git commit: updated refs/heads/4.3-forward to 1cfbfab

Updated Branches:
  refs/heads/4.3-forward aff22869c -> 1cfbfab81


CLOUDSTACK-6068: set display flag to true in service/disk_offering_details tables


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/1cfbfab8
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/1cfbfab8
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/1cfbfab8

Branch: refs/heads/4.3-forward
Commit: 1cfbfab8162b82b30d797d4805112a75cfef3ce0
Parents: aff2286
Author: Alena Prokharchyk <al...@citrix.com>
Authored: Mon Feb 10 17:15:50 2014 -0800
Committer: Alena Prokharchyk <al...@citrix.com>
Committed: Mon Feb 10 17:15:50 2014 -0800

----------------------------------------------------------------------
 setup/db/db/schema-421to430.sql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1cfbfab8/setup/db/db/schema-421to430.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-421to430.sql b/setup/db/db/schema-421to430.sql
index dc6131d..b55e388 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;