mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-08 16:45:30 +00:00
11 lines
163 B
SQL
11 lines
163 B
SQL
-- +migrate Up
|
|
|
|
CREATE TABLE tasks (
|
|
task_id VARCHAR(255) PRIMARY KEY
|
|
,task_data MEDIUMBLOB
|
|
,task_labels MEDIUMBLOB
|
|
);
|
|
|
|
-- +migrate Down
|
|
|
|
DROP TABLE tasks;
|