feat,wip: 기존 거래장 코드 정리
This commit is contained in:
@@ -32,9 +32,6 @@ DROP TABLE IF EXISTS ng_diplomacy;
|
||||
# 토너먼트 테이블 삭제
|
||||
DROP TABLE IF EXISTS tournament;
|
||||
|
||||
# 거래 테이블 삭제
|
||||
DROP TABLE IF EXISTS auction;
|
||||
|
||||
# 통계 테이블 삭제
|
||||
DROP TABLE IF EXISTS statistic;
|
||||
|
||||
|
||||
@@ -441,23 +441,6 @@ CREATE TABLE `tournament` (
|
||||
INDEX `grp` (`grp`, `grp_no`)
|
||||
) COLLATE = 'utf8mb4_general_ci' ENGINE = Aria;
|
||||
##############################
|
||||
## 거래 테이블
|
||||
##############################
|
||||
create table `auction` (
|
||||
`no` int(6) not null auto_increment,
|
||||
`type` int(6) default 0,
|
||||
`no1` int(6) default 0,
|
||||
`name1` varchar(64) default '-',
|
||||
`amount` int(6) default 0,
|
||||
`cost` int(6) default 0,
|
||||
`value` int(6) default 0,
|
||||
`topv` int(6) default 0,
|
||||
`no2` int(6) default 0,
|
||||
`name2` varchar(64) default '-',
|
||||
`expire` datetime,
|
||||
PRIMARY KEY (`no`)
|
||||
) COLLATE = 'utf8mb4_general_ci' ENGINE = Aria;
|
||||
##############################
|
||||
## 통계 테이블
|
||||
##############################
|
||||
CREATE TABLE `statistic` (
|
||||
|
||||
Reference in New Issue
Block a user