nation table에서 외교 서신 보관용 column 삭제

This commit is contained in:
2018-04-16 23:58:36 +09:00
parent bcad77ec06
commit 51d7dede55
+3 -9
View File
@@ -20,8 +20,8 @@ CREATE TABLE `general` (
`refcnt` INT(6) NULL DEFAULT '1',
`picture` CHAR(32) NOT NULL,
`imgsvr` INT(1) NULL DEFAULT '0',
`name` CHAR(32) NOT NULL,
`name2` CHAR(32) NULL DEFAULT NULL,
`name` CHAR(32) NOT NULL COLLATE 'utf8mb4_bin',
`name2` CHAR(32) NULL DEFAULT NULL COLLATE 'utf8mb4_bin',
`nation` INT(6) NULL DEFAULT '0',
`nations` CHAR(64) NULL DEFAULT ',0,',
`city` INT(6) NULL DEFAULT '3',
@@ -168,7 +168,7 @@ ENGINE=InnoDB;
create table nation (
nation int(6) not null auto_increment,
`name` CHAR(64) NOT NULL COLLATE 'utf8_bin',
`name` CHAR(64) NOT NULL COLLATE 'utf8mb4_bin',
color char(10) not null, can_change_flag int(1) default 1,
onlinegen varchar(1024) default '',
msg text default '',
@@ -202,12 +202,6 @@ create table nation (
type int(2) default 0,
rule text default '',
history mediumtext default '',
dip0 char(150) default '', dip0_type int(4) default 0, dip0_who int(9) default 0, dip0_when datetime,
dip1 char(150) default '', dip1_type int(4) default 0, dip1_who int(9) default 0, dip1_when datetime,
dip2 char(150) default '', dip2_type int(4) default 0, dip2_who int(9) default 0, dip2_when datetime,
dip3 char(150) default '', dip3_type int(4) default 0, dip3_who int(9) default 0, dip3_when datetime,
dip4 char(150) default '', dip4_type int(4) default 0, dip4_who int(9) default 0, dip4_when datetime,
dip5 char(150) default '', dip5_type int(4) default 0, dip5_who int(9) default 0, dip5_when datetime,
board0 text default '', board0_who int(6) default 0, board0_when datetime,
board1 text default '', board1_who int(6) default 0, board1_when datetime,
board2 text default '', board2_who int(6) default 0, board2_when datetime,