planetwars.dev/planetwars-server/migrations/2022-01-02-105610_matches/up.sql
2022-01-02 16:14:03 +01:00

14 lines
401 B
SQL

CREATE TABLE matches (
id SERIAL PRIMARY KEY,
log_path text NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
);
CREATE INDEX match_created_at ON matches(created_at);
CREATE TABLE match_players (
match_id integer REFERENCES matches(id) NOT NULL,
bot_id integer REFERENCES bots(id) NOT NULL,
player_id integer NOT NULL,
PRIMARY KEY (match_id, player_id)
);