schema 값 꼬이는 문제 해결

This commit is contained in:
2018-06-26 03:06:34 +09:00
parent d09aba70b7
commit 2f27ea4c8a
+2 -2
View File
@@ -363,7 +363,7 @@ ENGINE=InnoDB;
##
###########################################################################
CREATE TABLE `ng_hall` (
CREATE TABLE if not exists `ng_hall` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`server_id` CHAR(20) NOT NULL,
`scenario` INT(11) NOT NULL,
@@ -398,7 +398,7 @@ CREATE TABLE if not exists `ng_games` (
)
ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
CREATE TABLE `ng_old_nations` (
CREATE TABLE if not exists `ng_old_nations` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`server_id` CHAR(20) NOT NULL DEFAULT '0',
`nation` INT(11) NOT NULL DEFAULT '0',