From 676f98659a98a5719e3bef95c7e3e1799a66d226 Mon Sep 17 00:00:00 2001 From: hide_d Date: Mon, 21 May 2018 05:38:43 +0900 Subject: [PATCH] =?UTF-8?q?storage=20=ED=85=8C=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- f_install/sql/common_schema.sql | 2 +- hwe/sql/schema.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/f_install/sql/common_schema.sql b/f_install/sql/common_schema.sql index 67d17abd..d03df143 100644 --- a/f_install/sql/common_schema.sql +++ b/f_install/sql/common_schema.sql @@ -59,7 +59,7 @@ ENGINE=MyISAM DEFAULT CHARSET=utf8mb4; ################### # KV storage ################### -CREATE TABLE `storage` ( +CREATE TABLE if not exists `storage` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `namespace` VARCHAR(40) NOT NULL, `key` VARCHAR(40) NOT NULL, diff --git a/hwe/sql/schema.sql b/hwe/sql/schema.sql index 92925964..cafda9b9 100644 --- a/hwe/sql/schema.sql +++ b/hwe/sql/schema.sql @@ -611,7 +611,7 @@ ENGINE=MyISAM; ################### # KV storage ################### -CREATE TABLE `storage` ( +CREATE TABLE if not exists `storage` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `namespace` VARCHAR(40) NOT NULL, `key` VARCHAR(40) NOT NULL,