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,