CS-14619: Add missing INSERT statements

This commit is contained in:
Salvatore Orlando 2012-04-24 15:56:23 +01:00
parent 026ed52f1d
commit bbd2e06366

View File

@ -75,3 +75,7 @@ CREATE TABLE `cloud`.`ovs_tunnel_network`(
`state` varchar(16) default 'FAILED' COMMENT 'result of tunnel creatation',
PRIMARY KEY(`from`, `to`, `network_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `cloud`.`ovs_tunnel_interface` (`ip`, `netmask`, `mac`, `host_id`, `label`) VALUES ('0', '0', '0', 0, 'lock');
INSERT INTO `cloud`.`ovs_tunnel_network` (`from`, `to`, `network_id`, `key`, `port_name`, `state`) VALUES (0, 0, 0, 0, 'lock', 'SUCCESS');