removing the port to fwrule map table, as we are not supporting this anymore

This commit is contained in:
abhishek 2010-11-10 11:59:56 -08:00
parent a3896f27d9
commit f712cfcc46
1 changed files with 0 additions and 9 deletions

View File

@ -445,15 +445,6 @@ CREATE TABLE `cloud`.`ip_forwarding` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `cloud`.`iprule_portrange_map`(
`id` bigint unsigned NOT NULL auto_increment,
`fwrule_id` bigint unsigned NOT NULL,
`start_port` varchar(10) default NULL,
`end_port` varchar(10) default NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `cloud`.`host` (
`id` bigint unsigned NOT NULL auto_increment,
`name` varchar(255) NOT NULL,