score-the-pigs/resources/migrations/20250312151928-create-players.up.sql

8 lines
219 B
SQL

CREATE TABLE IF NOT EXISTS player (
id INTEGER PRIMARY KEY,
score INTEGER NOT NULL,
name text NOT NULL,
game_code text NOT NULL,
play_order integer NOT NULL,
FOREIGN KEY (game_code) REFERENCES game(code)
);