bgg-ottawa-sell-club/db/schema.sql

21 lines
553 B
MySQL
Raw Normal View History

2024-01-30 20:54:24 +00:00
CREATE TABLE IF NOT EXISTS "schema_migrations" (version varchar(255) primary key);
CREATE TABLE bgg_user (
username text primary key
);
CREATE TABLE game (
id integer primary key,
username text,
thumbnail text,
bgg_id text,
name text,
2024-02-01 20:27:38 +00:00
notes text, price integer, updated_at text,
2024-01-30 20:54:24 +00:00
FOREIGN KEY(username) REFERENCES bgg_user(username)
);
-- Dbmate schema migrations
INSERT INTO "schema_migrations" (version) VALUES
('20240130203355'),
('20240130203603'),
2024-02-01 20:27:38 +00:00
('20240130205124'),
2024-02-04 15:36:46 +00:00
('20240201201248'),
('20240204153045');