Initial setup for a cron working on the ui for various tasks

This commit is contained in:
Jaret Burkett
2025-06-17 07:43:34 -06:00
parent 1cc663a664
commit 595a6f1735
5 changed files with 709 additions and 9 deletions

View File

@@ -26,3 +26,13 @@ model Job {
info String @default("")
speed_string String @default("")
}
model Queue {
id String @id @default(uuid())
channel String
job_id String
created_at DateTime @default(now())
updated_at DateTime @updatedAt
status String @default("waiting")
@@index([job_id, channel])
}