From 67fe67ea8c40e26f52823e8a4a14ec5ed423c5ed Mon Sep 17 00:00:00 2001 From: Sheng Yang Date: Thu, 15 Dec 2011 11:01:21 -0800 Subject: [PATCH] Fix simulator_network_label in db Commit 4f904d5fd9dbe5252b7a6075f712e9254059e2c0 "Changes to PhysicalNetworkTrafficType to accomodate the simulator hypervisor type" broke master. This patch fixes it. --- setup/db/create-schema.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/db/create-schema.sql b/setup/db/create-schema.sql index 8c2194fefa2..634f1a96d5f 100755 --- a/setup/db/create-schema.sql +++ b/setup/db/create-schema.sql @@ -1910,6 +1910,7 @@ CREATE TABLE `cloud`.`physical_network_traffic_types` ( `xen_network_label` varchar(255) COMMENT 'The network name label of the physical device dedicated to this traffic on a XenServer host', `kvm_network_label` varchar(255) DEFAULT 'cloudbr0' COMMENT 'The network name label of the physical device dedicated to this traffic on a KVM host', `vmware_network_label` varchar(255) DEFAULT 'vSwitch0' COMMENT 'The network name label of the physical device dedicated to this traffic on a VMware host', + `simulator_network_label` varchar(255) COMMENT 'The name labels needed for identifying the simulator', `vlan` varchar(255) COMMENT 'The vlan tag to be sent down to a VMware host', PRIMARY KEY (`id`), CONSTRAINT `fk_physical_network_traffic_types__physical_network_id` FOREIGN KEY (`physical_network_id`) REFERENCES `physical_network`(`id`) ON DELETE CASCADE,