mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 01:01:20 +10:00
* feat: historical tasks in database, better scheduling, and unified API for accessing tasks * feat: new UI for everything * fix: add translations and fix formatting
This commit is contained in:
15
prisma/models/task.prisma
Normal file
15
prisma/models/task.prisma
Normal file
@ -0,0 +1,15 @@
|
||||
model Task {
|
||||
id String @id
|
||||
taskGroup String
|
||||
name String
|
||||
|
||||
started DateTime
|
||||
ended DateTime
|
||||
|
||||
success Boolean
|
||||
error Json?
|
||||
progress Float
|
||||
log String[]
|
||||
|
||||
acls String[]
|
||||
}
|
||||
Reference in New Issue
Block a user