You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ek...@apache.org on 2015/06/08 16:10:45 UTC

[2/7] git commit: updated refs/heads/feature/vpc-ipv6 to 873cbdd

Size of ipv6 CIDR and asNumber fields are reduced to reflect their actual size


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

Branch: refs/heads/feature/vpc-ipv6
Commit: 49418223d5a5b0ceec5ad29afaac9e09e77ec5cd
Parents: e672a88
Author: Suresh Ramamurthy <su...@gmail.com>
Authored: Thu Jun 4 10:08:14 2015 -0700
Committer: Suresh Ramamurthy <su...@gmail.com>
Committed: Thu Jun 4 10:08:14 2015 -0700

----------------------------------------------------------------------
 setup/db/db/schema-451to460.sql | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/49418223/setup/db/db/schema-451to460.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-451to460.sql b/setup/db/db/schema-451to460.sql
index b618f77..d414553 100644
--- a/setup/db/db/schema-451to460.sql
+++ b/setup/db/db/schema-451to460.sql
@@ -399,6 +399,6 @@ CREATE TABLE `cloud`.`external_bigswitch_bcf_devices` (
   CONSTRAINT `fk_external_bigswitch_bcf_devices__physical_network_id` FOREIGN KEY (`physical_network_id`) REFERENCES `physical_network`(`id`) ON DELETE CASCADE
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
-ALTER TABLE `cloud`.`data_center` ADD COLUMN `ip6_super_network_cidr` varchar(255);
-ALTER TABLE `cloud`.`data_center` ADD COLUMN `as_number` varchar(255);
-ALTER TABLE `cloud`.`vpc` ADD COLUMN `ip6_cidr` varchar(255);
\ No newline at end of file
+ALTER TABLE `cloud`.`data_center` ADD COLUMN `ip6_super_network_cidr` varchar(50);
+ALTER TABLE `cloud`.`data_center` ADD COLUMN `as_number` varchar(15);
+ALTER TABLE `cloud`.`vpc` ADD COLUMN `ip6_cidr` varchar(50);
\ No newline at end of file