탈퇴 프로세스 추가

This commit is contained in:
2018-03-21 02:57:59 +09:00
parent f3d7a6a1a7
commit f7a9445954
12 changed files with 167 additions and 221 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ CREATE TABLE `member_log` (
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`member_no` INT(11) NOT NULL,
`date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
`action_type` ENUM('reg','try_login','login','logout','oauth','change_pw','make_general','access_server') NOT NULL,
`action_type` ENUM('reg','try_login','login','logout','oauth','change_pw','make_general','access_server','delete') NOT NULL,
`action` TEXT NULL DEFAULT NULL COMMENT 'JSON',
PRIMARY KEY (`id`),
INDEX `action` (`member_no`, `action_type`, `date`),