From 386b467ef34125ab1c6716dcf6afe9d3f1a34eb1 Mon Sep 17 00:00:00 2001 From: Daan Hoogland Date: Thu, 16 Jan 2014 20:22:42 +0100 Subject: [PATCH] CLOUDSTACK-5886: set cidr field-width to 2048 --- setup/db/db/schema-410to420.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/db/db/schema-410to420.sql b/setup/db/db/schema-410to420.sql index 37e68269d8f..b0be6c70d4d 100644 --- a/setup/db/db/schema-410to420.sql +++ b/setup/db/db/schema-410to420.sql @@ -2021,7 +2021,7 @@ CREATE TABLE `cloud`.`network_acl_item` ( `icmp_code` int(10) COMMENT 'The ICMP code (if protocol=ICMP). A value of -1 means all codes for the given ICMP type.', `icmp_type` int(10) COMMENT 'The ICMP type (if protocol=ICMP). A value of -1 means all types.', `traffic_type` char(32) COMMENT 'the traffic type of the rule, can be Ingress or Egress', - `cidr` varchar(255) COMMENT 'comma seperated cidr list', + `cidr` varchar(2048) COMMENT 'comma seperated cidr list', `number` int(10) NOT NULL COMMENT 'priority number of the acl item', `action` varchar(10) NOT NULL COMMENT 'rule action, allow or deny', PRIMARY KEY (`id`),