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

6 lines
120 B
MySQL
Raw Normal View History

2025-03-12 19:54:45 +00:00
CREATE TABLE IF NOT EXISTS game (
2025-03-14 18:55:18 +00:00
code text PRIMARY KEY,
2025-03-12 22:29:52 +00:00
current_player integer,
2025-03-14 18:55:18 +00:00
player_count integer NOT NULL
2025-03-12 19:54:45 +00:00
);