From 4fe63f7de88a012cfeb61132abac68aea513a424 Mon Sep 17 00:00:00 2001 From: Devdeep Singh Date: Fri, 27 Dec 2013 13:15:40 +0530 Subject: [PATCH] CLOUDSTACK-5655: hyper-v configuration parameters are missing in upgraded setup. Updated the db upgrade schema script to insert the configuration parameters. --- setup/db/db/schema-421to430.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup/db/db/schema-421to430.sql b/setup/db/db/schema-421to430.sql index 186fe4833f8..4e4cae4db6c 100644 --- a/setup/db/db/schema-421to430.sql +++ b/setup/db/db/schema-421to430.sql @@ -844,6 +844,9 @@ CREATE TABLE `cloud`.`s2s_vpn_gateway_details` ( CONSTRAINT `fk_s2s_vpn_gateway_details__s2s_vpn_gateway_id` FOREIGN KEY `fk_s2s_vpn_gateway_details__s2s_vpn_gateway_id`(`s2s_vpn_gateway_id`) REFERENCES `s2s_vpn_gateway`(`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Hidden', 'DEFAULT', 'management-server', 'hyperv.guest.network.device', null, 'Specify the virtual switch on host for guest network', NULL, NULL, NULL, 0); +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Hidden', 'DEFAULT', 'management-server', 'hyperv.private.network.device', null, 'Specify the virtual switch on host for private network', NULL, NULL, NULL, 0); +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Hidden', 'DEFAULT', 'management-server', 'hyperv.public.network.device', null, 'Specify the public virtual switch on host for public network', NULL, NULL, NULL, 0); CREATE TABLE `cloud`.`s2s_customer_gateway_details` ( `id` bigint unsigned NOT NULL auto_increment,