CS-14613: syntax error in create-schema.sql for 3.0.x

This commit is contained in:
Salvatore Orlando 2012-04-24 10:34:12 +01:00
parent 182a4cf2e9
commit 5c58aeaa04
1 changed files with 1 additions and 1 deletions

View File

@ -1746,7 +1746,7 @@ CREATE TABLE `cloud`.`ovs_tunnel_network`(
`key` int unsigned COMMENT 'gre key',
`port_name` varchar(32) COMMENT 'in port on open vswitch',
`state` varchar(16) default 'FAILED' COMMENT 'result of tunnel creatation',
PRIMARY KEY(`from`, `to`, `account`)
PRIMARY KEY(`from`, `to`, `network_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `cloud`.`ovs_tunnel_network` (`from`, `to`, `network_id`, `key`, `port_name`, `state`) VALUES (0, 0, 0, 0, 'lock', 'SUCCESS');