From c5a59ee0bebae2489db871c3eef671861bd84de2 Mon Sep 17 00:00:00 2001 From: Kishan Kavala Date: Mon, 13 May 2013 19:31:53 +0530 Subject: [PATCH] fixed update query in vpc_gateway upgrade --- setup/db/db/schema-410to420.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/db/db/schema-410to420.sql b/setup/db/db/schema-410to420.sql index a1c27b03efa..9e1a871e835 100644 --- a/setup/db/db/schema-410to420.sql +++ b/setup/db/db/schema-410to420.sql @@ -1602,4 +1602,4 @@ CREATE TABLE `cloud`.`nic_ip_alias` ( UNIQUE INDEX `id_UNIQUE` (`id` ASC) ); alter table `cloud`.`vpc_gateways` add column network_acl_id bigint unsigned default 1 NOT NULL; -update table cloud.vpc_gateways set network_acl_id = 2; +update `cloud`.`vpc_gateways` set network_acl_id = 2;