Files
knifer/migrations/2024-09-07-151517_demos/up.sql
2024-09-08 00:41:12 +02:00

7 lines
129 B
SQL

-- Your SQL goes here
CREATE TABLE IF NOT EXISTS demos (
steam_id bigint,
demo_id bigint,
PRIMARY KEY(steam_id, demo_id)
)