Compare commits
2 commits
1eb72905cd
...
97fba6cb85
Author | SHA1 | Date | |
---|---|---|---|
97fba6cb85 | |||
f1c5a39548 |
2 changed files with 14 additions and 3 deletions
|
@ -43,7 +43,18 @@ WHERE
|
|||
user_id = :uid
|
||||
;
|
||||
|
||||
-- name: delete-file!
|
||||
-- name: delete-file#
|
||||
DELETE FROM jobs
|
||||
WHERE
|
||||
user_uid = :uid
|
||||
AND file_id = :fid
|
||||
;
|
||||
|
||||
DELETE FROM file_analysis
|
||||
WHERE
|
||||
file_id = :fid
|
||||
;
|
||||
|
||||
DELETE FROM files
|
||||
WHERE
|
||||
user_id = :uid
|
||||
|
|
|
@ -58,12 +58,12 @@ WHERE
|
|||
|
||||
-- name: list-jobs-by-file
|
||||
SELECT
|
||||
*
|
||||
finished_at
|
||||
, (SELECT name FROM job_statuses WHERE id = j.status_id) AS `status`
|
||||
FROM jobs
|
||||
WHERE
|
||||
file_id = :fid
|
||||
, uid = :uid
|
||||
AND uid = :uid
|
||||
;
|
||||
|
||||
-- name: list-job-queue
|
||||
|
|
Loading…
Reference in a new issue