10 lines
139 B
SQL
10 lines
139 B
SQL
-- TODO: Finish writing SQL migration
|
|
-- for users table
|
|
-- +goose Up
|
|
CREATE TABLE users (
|
|
id UUID
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE users;
|