You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/09/23 11:32:08 UTC

git commit: updated refs/heads/4.4 to ec5f842

Repository: cloudstack
Updated Branches:
  refs/heads/4.4 b0b48456b -> ec5f842d8


fix from master backported to 4.4 db upgrade path

	hand picked from 774739fb97f0951aacf566e23b0d3782035c385a


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

Branch: refs/heads/4.4
Commit: ec5f842d8aa31c0a8efda00d551abf6a78a0e69a
Parents: b0b4845
Author: Daan Hoogland <da...@onecht.net>
Authored: Tue Sep 23 11:08:19 2014 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Tue Sep 23 11:31:44 2014 +0200

----------------------------------------------------------------------
 setup/db/db/schema-430to440.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ec5f842d/setup/db/db/schema-430to440.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-430to440.sql b/setup/db/db/schema-430to440.sql
index 69bb496..df016af 100644
--- a/setup/db/db/schema-430to440.sql
+++ b/setup/db/db/schema-430to440.sql
@@ -694,7 +694,7 @@ CREATE TABLE `cloud`.`op_router_monitoring_services` (
    CONSTRAINT `fk_virtual_router__id` FOREIGN KEY `fk_virtual_router__id` (`vm_id`) REFERENCES `vm_instance`(`id`) ON DELETE CASCADE
 ) ENGINE = InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `cloud`.`event` ADD COLUMN `display` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'True if the detail can be displayed to the end user';
+ALTER TABLE `cloud`.`event` ADD COLUMN `display` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'True if the detail can be displayed to the end user';
 
 DROP VIEW IF EXISTS `cloud`.`event_view`;
 CREATE VIEW `cloud`.`event_view` AS