mirror of https://github.com/pressly/goose.git
17 lines
332 B
SQL
17 lines
332 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE issues (
|
|
issue_id Uint64,
|
|
issue_created_by Uint64,
|
|
issue_repo_id Uint64,
|
|
issue_created_at Timestamp,
|
|
issue_description Utf8,
|
|
PRIMARY KEY (issue_id)
|
|
);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE issues;
|
|
-- +goose StatementEnd
|