feat(db): add Job.paused column for per-item press pause

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan
2026-07-15 11:54:19 +02:00
parent 878eac066e
commit 9c2495825f
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -58,6 +58,7 @@ model Job {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
downloadProgress Float @default(0)
paused Boolean @default(false)
candidates Candidate[]
}