mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
29 lines
632 B
Plaintext
29 lines
632 B
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = "file:../../aitk_db.db"
|
|
}
|
|
|
|
model Settings {
|
|
id Int @id @default(autoincrement())
|
|
key String @unique
|
|
value String
|
|
}
|
|
|
|
model Job {
|
|
id String @id @default(uuid())
|
|
name String @unique
|
|
gpu_ids String
|
|
job_config String // JSON string
|
|
created_at DateTime @default(now())
|
|
updated_at DateTime @updatedAt
|
|
status String @default("stopped")
|
|
stop Boolean @default(false)
|
|
step Int @default(0)
|
|
info String @default("")
|
|
speed_string String @default("")
|
|
}
|