score-the-pigs/resources/migrations/20250312151923-create-game.up.sql
2025-03-12 18:29:52 -04:00

8 lines
189 B
SQL

CREATE TABLE IF NOT EXISTS game (
id text PRIMARY KEY,
code text UNIQUE,
display_session text NOT NULL,
control_session text,
current_player integer,
active boolean not null
);