Fix sql syntax error, a coma is missing

This commit is contained in:
Kelven Yang 2011-03-24 10:27:15 -07:00
parent 50244b79ab
commit bfc420f22e

View File

@ -530,7 +530,7 @@ CREATE TABLE `cloud`.`host_pod_ref` (
`allocation_state` varchar(32) NOT NULL DEFAULT 'Enabled' COMMENT 'Is this Pod enabled for allocation for new resources',
PRIMARY KEY (`id`),
UNIQUE KEY (`name`, `data_center_id`),
INDEX `i_host_pod_ref__data_center_id`(`data_center_id`)
INDEX `i_host_pod_ref__data_center_id`(`data_center_id`),
INDEX `i_host_pod_ref__allocation_state`(`allocation_state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;