Add Head-to-Head kill stats
Add basic head-to-head kill analysis and the corresponding matrix display in the UI
This commit is contained in:
8
migrations/2024-11-04-220702_head-to-head/up.sql
Normal file
8
migrations/2024-11-04-220702_head-to-head/up.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- 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)
|
||||
);
|
||||
Reference in New Issue
Block a user