mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
12 lines
163 B
SQL
12 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;
|