schema 버그 수정. DB에서 Exception 제대로 안 던지는 버그 해결

This commit is contained in:
2018-04-17 00:18:38 +09:00
parent 7a5eecc3e1
commit 48088748df
3 changed files with 7 additions and 3 deletions
+3 -3
View File
@@ -280,8 +280,8 @@ create table nation (
###########################################################################
## trade 100
create table city (
city int(6) not null auto_increment,
name char(64) not null,
`city` INT(6) NOT NULL AUTO_INCREMENT,
`name` CHAR(64) NOT NULL,
level int(1) default 0,
upgrading int(1) default 0,
nation int(6) default 0,
@@ -312,7 +312,7 @@ create table city (
state int(2) default 0,
region int(2) default 0,
term int(1) default 0,
conflict varchar(500) default '{}'
conflict varchar(500) default '{}',
PRIMARY KEY (city),
KEY (nation)