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.
17 lines
397 B
17 lines
397 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE project_status (
|
|
project_id CHAR(16) NOT NULL,
|
|
name CHAR(32) NOT NULL,
|
|
stage INT NOT NULL,
|
|
description VARCHAR(255) NOT NULL,
|
|
|
|
PRIMARY KEY (project_id, name),
|
|
INDEX (project_id, stage, name) # for sorting
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE project_status;
|
|
-- +goose StatementEnd
|