From 6ef55309943f144e4b1f4dab11d02019fa5c7572 Mon Sep 17 00:00:00 2001 From: edison Date: Fri, 20 Aug 2010 20:08:26 -0700 Subject: [PATCH] hypervisor type in cluster can be null --- 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 f38555120df..a39e618a810 100755 --- a/setup/db/create-schema.sql +++ b/setup/db/create-schema.sql @@ -162,7 +162,7 @@ CREATE TABLE `cloud`.`cluster` ( `name` varchar(255) NOT NULL COMMENT 'name for the cluster', `pod_id` bigint unsigned NOT NULL COMMENT 'pod id', `data_center_id` bigint unsigned NOT NULL COMMENT 'data center id', - `hypervisor_type` varchar(255) NOT NULL, + `hypervisor_type` varchar(255), PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;