서버 예약 오픈을 UI에 통합

This commit is contained in:
2018-04-25 02:56:11 +09:00
parent 6253b757ec
commit 23fb1194ee
7 changed files with 96 additions and 6 deletions
+13 -1
View File
@@ -643,4 +643,16 @@ CREATE TABLE `general_public_record` (
)
DEFAULT CHARSET=utf8mb4
ENGINE=InnoDB
;
;
######
#
CREATE TABLE `reserved_open` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`options` TEXT NULL DEFAULT NULL,
`date` DATETIME NULL DEFAULT NULL,
PRIMARY KEY (`id`),
INDEX `date` (`date`)
)
DEFAULT CHARSET=utf8mb4
ENGINE=MyISAM;