goose/internal/testing/integration/testdata/migrations/ydb/00007_g.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