1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-30 10:11:23 +02:00
woodpecker/store/datastore/ddl/sqlite3/15.sql

12 lines
143 B
MySQL
Raw Normal View History

2017-04-14 13:32:36 +02:00
-- +migrate Up
CREATE TABLE tasks (
task_id TEXT PRIMARY KEY
,task_data BLOB
,task_labels BLOB
);
-- +migrate Down
DROP TABLE tasks;