score-the-pigs/resources/migrations/20250312151923-create-game.up.sql
2025-04-10 15:48:36 -04:00

11 lines
342 B
SQL

CREATE TABLE IF NOT EXISTS game (
code text PRIMARY KEY COLLATE NOCASE,
game_set text COLLATE NOCASE,
current_player integer,
player_count integer NOT NULL,
scoring_option text NOT NULL,
winner integer,
is_last_round boolean,
FOREIGN KEY (winner) REFERENCES player(id),
FOREIGN KEY (current_player) REFERENCES player(id)
);