feat: GeneralAccessLog table 준비
- general 테이블에서 유저 접속과 관련한 로그만 분리 - ip 정보는 api 접속부에서 기록하므로 제외
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace sammo\Enums;
|
||||
|
||||
enum GeneralAccessLogColumn: string {
|
||||
case id = 'id';
|
||||
case generalID = 'general_id';
|
||||
case userID = 'user_id';
|
||||
case nationID = 'nation_id';
|
||||
case lastRefresh = 'last_refresh';
|
||||
case lastConnect = 'last_connect';
|
||||
case loginTotal = 'login_total';
|
||||
case refresh = 'refresh';
|
||||
case refreshTotal = 'refresh_total';
|
||||
}
|
||||
Reference in New Issue
Block a user