You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/01/16 21:22:07 UTC

git commit: updated refs/heads/4.2 to a615b72

Updated Branches:
  refs/heads/4.2 4f3088929 -> a615b72f2


CLOUDSTACK-5886: enlarged cidr field

Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a615b72f
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a615b72f
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a615b72f

Branch: refs/heads/4.2
Commit: a615b72f2f910f4c0ab64d978201bd27d222a317
Parents: 4f30889
Author: Daan Hoogland <dh...@schubergphilis.com>
Authored: Thu Jan 16 21:21:54 2014 +0100
Committer: Daan Hoogland <dh...@schubergphilis.com>
Committed: Thu Jan 16 21:21:54 2014 +0100

----------------------------------------------------------------------
 setup/db/db/schema-410to420.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a615b72f/setup/db/db/schema-410to420.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-410to420.sql b/setup/db/db/schema-410to420.sql
index f44ba96..6eb9913 100644
--- a/setup/db/db/schema-410to420.sql
+++ b/setup/db/db/schema-410to420.sql
@@ -1848,7 +1848,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`),