bgg-ottawa-sell-club/db/migrations/20240130203355_user-table.sql

12 lines
127 B
SQL

-- migrate:up
CREATE TABLE IF NOT EXISTS bgg_user (
username text primary key
);
-- migrate:down
DROP TABLE bgg_user;