8 lines
163 B
MySQL
8 lines
163 B
MySQL
|
|
CREATE TABLE IF NOT EXISTS game (
|
||
|
|
id text PRIMARY KEY,
|
||
|
|
code text UNIQUE,
|
||
|
|
display_session text NOT NULL,
|
||
|
|
control_session text,
|
||
|
|
active boolean not null
|
||
|
|
);
|