mirror of
https://github.com/harness/drone.git
synced 2025-05-02 13:40:22 +00:00
12 lines
131 B
SQL
12 lines
131 B
SQL
-- name: task-list
|
|
|
|
SELECT
|
|
task_id
|
|
,task_data
|
|
,task_labels
|
|
FROM tasks
|
|
|
|
-- name: task-delete
|
|
|
|
DELETE FROM tasks WHERE task_id = $1
|