mirror of
https://github.com/harness/drone.git
synced 2025-05-08 16:32:43 +08:00
12 lines
153 B
SQL
12 lines
153 B
SQL
-- +migrate Up
|
|
|
|
CREATE TABLE tasks (
|
|
task_id VARCHAR(255) PRIMARY KEY
|
|
,task_data BYTEA
|
|
,task_labels BYTEA
|
|
);
|
|
|
|
-- +migrate Down
|
|
|
|
DROP TABLE tasks;
|