rollbacked create-schema foreign key constraint until we can figure out a way to make sure server-setup.xml isn't broken by this for developers.

This commit is contained in:
will 2011-03-29 17:16:29 -07:00
parent b0edad07c5
commit 0cd415c8d2
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ CREATE TABLE `cloud`.`vlan` (
`data_center_id` bigint unsigned NOT NULL,
`network_id` bigint unsigned NOT NULL COMMENT 'id of corresponding network offering',
PRIMARY KEY (`id`),
CONSTRAINT `fk_vlan__network_id` FOREIGN KEY (`network_id`) REFERENCES `networks`(`id`),
#CONSTRAINT `fk_vlan__network_id` FOREIGN KEY (`network_id`) REFERENCES `networks`(`id`),
CONSTRAINT `fk_vlan__data_center_id` FOREIGN KEY (`data_center_id`) REFERENCES `data_center`(`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;