mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-04 13:42:22 +00:00
11 lines
143 B
SQL
11 lines
143 B
SQL
-- +migrate Up
|
|
|
|
CREATE TABLE tasks (
|
|
task_id TEXT PRIMARY KEY
|
|
,task_data BLOB
|
|
,task_labels BLOB
|
|
);
|
|
|
|
-- +migrate Down
|
|
|
|
DROP TABLE tasks;
|