feat,wip: 기존 거래장 코드 정리

This commit is contained in:
2022-06-09 01:21:21 +09:00
parent 79e63fb829
commit d18ae3dd11
19 changed files with 31 additions and 650 deletions
-17
View File
@@ -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` (