From bfc420f22eabd71d2b037a3334bb9969cb92e1ae Mon Sep 17 00:00:00 2001 From: Kelven Yang Date: Thu, 24 Mar 2011 10:27:15 -0700 Subject: [PATCH] Fix sql syntax error, a coma is missing --- setup/db/create-schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/db/create-schema.sql b/setup/db/create-schema.sql index 95659545626..5aee10999b5 100755 --- a/setup/db/create-schema.sql +++ b/setup/db/create-schema.sql @@ -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;