7 lines
209 B
SQL
7 lines
209 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE IF NOT EXISTS ANALYSIS_QUEUE (
|
|
demo_id bigint PRIMARY KEY REFERENCES demos(demo_id),
|
|
steam_id Text NOT NULL,
|
|
created_at timestamp NOT NULL default current_timestamp
|
|
);
|