1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-18 08:26:45 +02:00
woodpecker/server/store/datastore/sql/postgres/files/tasks.sql
Jacob Floyd 5fe712cca6
Move package store/ to server/store/ (#341)
* Refactor: move store/ to server/store/

* fix pipeline for moved tests

Co-authored-by: 6543 <6543@obermui.de>
2021-09-23 13:33:59 +02:00

14 lines
163 B
SQL

-- name: task-list
SELECT
task_id
,task_data
,task_labels
,task_dependencies
,task_run_on
FROM tasks
-- name: task-delete
DELETE FROM tasks WHERE task_id = $1