Fix formatting and implement the end of game score display

This commit is contained in:
Lol3rrr
2024-10-14 21:20:26 +02:00
parent 6f255faeb3
commit a2be4c2167
13 changed files with 401 additions and 200 deletions

View File

@@ -27,3 +27,11 @@ CREATE TABLE IF NOT EXISTS demo_player_stats (
assists int2 NOT NULL,
PRIMARY KEY (demo_id, steam_id)
);
CREATE TABLE IF NOT EXISTS demo_teams (
demo_id TEXT NOT NULL,
team int2 NOT NULL,
end_score int2 NOT NULL,
start_name TEXT NOT NULL,
PRIMARY KEY (demo_id, team)
);