feat: 플레이 감사 장수 로그를 기수별로 조회
This commit is contained in:
@@ -791,6 +791,7 @@ model Event {
|
||||
|
||||
model LogEntry {
|
||||
id Int @id @default(autoincrement())
|
||||
serverId String? @map("server_id")
|
||||
scope LogScope
|
||||
category LogCategory
|
||||
subType String? @map("sub_type")
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Existing rows have no provable season identity. Preserve them without guessing.
|
||||
ALTER TABLE "log_entry" ADD COLUMN "server_id" TEXT;
|
||||
@@ -416,6 +416,7 @@ export interface TurnEngineEventCreateManyInput {
|
||||
}
|
||||
|
||||
export interface TurnEngineLogEntryCreateManyInput {
|
||||
serverId?: string | null;
|
||||
scope: LogScope;
|
||||
category: LogCategory;
|
||||
subType: string | null;
|
||||
|
||||
Reference in New Issue
Block a user