You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by de...@apache.org on 2013/12/20 06:55:09 UTC

git commit: updated refs/heads/4.3 to 408345d

Updated Branches:
  refs/heads/4.3 5df50297e -> 408345d81


CLOUDSTACK-5311: Fixing the hypervisor version in capabilities table.


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

Branch: refs/heads/4.3
Commit: 408345d8180c474020a420d7e8f8aa86bf163f0c
Parents: 5df5029
Author: Devdeep Singh <de...@gmail.com>
Authored: Fri Dec 20 11:24:06 2013 +0530
Committer: Devdeep Singh <de...@gmail.com>
Committed: Fri Dec 20 11:24:06 2013 +0530

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/408345d8/setup/db/db/schema-421to430.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-421to430.sql b/setup/db/db/schema-421to430.sql
index 8c04515..574f510 100644
--- a/setup/db/db/schema-421to430.sql
+++ b/setup/db/db/schema-421to430.sql
@@ -823,7 +823,7 @@ CREATE TABLE `cloud`.`network_acl_item_details` (
 ALTER TABLE `cloud`.`alert` ADD COLUMN `name` varchar(255) DEFAULT NULL COMMENT 'name of the alert';
 
 UPDATE `cloud`.`hypervisor_capabilities` SET `max_data_volumes_limit`=13 WHERE `hypervisor_type`='Vmware';
-INSERT IGNORE INTO `cloud`.`hypervisor_capabilities`(uuid, hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit, storage_motion_supported) VALUES (UUID(), 'Hyperv', '6.3', 1024, 0, 64, 0);
+INSERT IGNORE INTO `cloud`.`hypervisor_capabilities`(uuid, hypervisor_type, hypervisor_version, max_guests_limit, security_group_enabled, max_data_volumes_limit, storage_motion_supported) VALUES (UUID(), 'Hyperv', '6.2', 1024, 0, 64, 0);
 
 CREATE TABLE `cloud`.`s2s_vpn_gateway_details` (
   `id` bigint unsigned NOT NULL auto_increment,