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

9 lines
219 B
MySQL
Raw Normal View History

2025-03-12 19:54:45 +00:00
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)
2025-03-12 19:54:45 +00:00
);