mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-30 10:11:23 +02:00
12 lines
143 B
MySQL
12 lines
143 B
MySQL
|
-- +migrate Up
|
||
|
|
||
|
CREATE TABLE tasks (
|
||
|
task_id TEXT PRIMARY KEY
|
||
|
,task_data BLOB
|
||
|
,task_labels BLOB
|
||
|
);
|
||
|
|
||
|
-- +migrate Down
|
||
|
|
||
|
DROP TABLE tasks;
|