woodpecker/store/datastore/ddl/mysql/15.sql

12 lines
163 B
MySQL
Raw Normal View History

2017-04-14 11:32:36 +00:00
-- +migrate Up
CREATE TABLE tasks (
task_id VARCHAR(255) PRIMARY KEY
,task_data MEDIUMBLOB
,task_labels MEDIUMBLOB
);
-- +migrate Down
DROP TABLE tasks;