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