6 lines
107 B
SQL
6 lines
107 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE IF NOT EXISTS demos (
|
|
steam_id bigint PRIMARY KEY,
|
|
demo_id bigint
|
|
)
|