2025-03-12 19:54:45 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS game (
|
|
|
|
|
id text PRIMARY KEY,
|
|
|
|
|
code text UNIQUE,
|
|
|
|
|
display_session text NOT NULL,
|
|
|
|
|
control_session text,
|
2025-03-12 22:29:52 +00:00
|
|
|
current_player integer,
|
2025-03-12 19:54:45 +00:00
|
|
|
active boolean not null
|
|
|
|
|
);
|