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

12 lines
127 B
MySQL
Raw Normal View History

2024-01-30 20:54:24 +00:00
-- migrate:up
CREATE TABLE IF NOT EXISTS bgg_user (
username text primary key
);
-- migrate:down
DROP TABLE bgg_user;