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

5 lines
120 B
SQL

CREATE TABLE IF NOT EXISTS game (
code text PRIMARY KEY,
current_player integer,
player_count integer NOT NULL
);