mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-04-30 19:21:39 +00:00
Initial setup for a cron working on the ui for various tasks
This commit is contained in:
@@ -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])
|
||||
}
|
||||
Reference in New Issue
Block a user