From f712cfcc46437d3176a099218aee4834cf594496 Mon Sep 17 00:00:00 2001 From: abhishek Date: Wed, 10 Nov 2010 11:59:56 -0800 Subject: [PATCH] removing the port to fwrule map table, as we are not supporting this anymore --- setup/db/create-schema.sql | 9 --------- 1 file changed, 9 deletions(-) diff --git a/setup/db/create-schema.sql b/setup/db/create-schema.sql index b73d95cf875..91c0e1276e0 100755 --- a/setup/db/create-schema.sql +++ b/setup/db/create-schema.sql @@ -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,