You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
15 lines
313 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE task_link (
|
|
project_id CHAR(16) NOT NULL,
|
|
task_id CHAR(16) NOT NULL,
|
|
|
|
PRIMARY KEY (project_id, task_id),
|
|
UNIQUE (task_id, project_id)
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE task_link;
|
|
-- +goose StatementEnd
|