score-the-pigs/resources/migrations/20250312151923-create-game.up.sql

7 lines
163 B
SQL

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