feat: add Job Monitor page with cron job logging and Selenium queue status
This commit is contained in:
@@ -400,6 +400,21 @@ enum NotificationTypes {
|
||||
ETC
|
||||
}
|
||||
|
||||
// Cron job execution log
|
||||
model CronJobLog {
|
||||
id Int @id @default(autoincrement())
|
||||
jobName String // e.g. "local-backup", "usb-backup"
|
||||
status String // "success" | "failed" | "skipped"
|
||||
startedAt DateTime
|
||||
completedAt DateTime?
|
||||
durationMs Int?
|
||||
errorMessage String?
|
||||
|
||||
@@index([jobName])
|
||||
@@index([startedAt])
|
||||
@@index([status])
|
||||
}
|
||||
|
||||
model CloudFolder {
|
||||
id Int @id @default(autoincrement())
|
||||
userId Int
|
||||
|
||||
Reference in New Issue
Block a user