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)
);