bgg-ottawa-sell-club/db/migrations/20240130203355_user-table.sql
2024-01-30 15:54:24 -05:00

12 lines
127 B
SQL

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