Files
knifer/migrations/2024-11-04-220702_head-to-head/up.sql
Lol3rrr fa21804cc3 Add Head-to-Head kill stats
Add basic head-to-head kill analysis and the corresponding matrix display in the UI
2024-11-05 07:50:43 +01:00

9 lines
206 B
SQL

-- Your SQL goes here
CREATE TABLE IF NOT EXISTS demo_head_to_head (
demo_id TEXT NOT NULL,
player TEXT NOT NULL,
enemy TEXT NOT NULL,
kills int2 NOT NULL,
PRIMARY KEY (demo_id, player, enemy)
);