Add Heatmaps to UI
Add Heatmap analysis to website as well as a basic UI for viewing the Heatmaps. There are still issues, like some players not getting a heatmap assigned and heatmaps including data from warmup etc.
This commit is contained in:
2
migrations/2024-09-28-132839_heatmap/down.sql
Normal file
2
migrations/2024-09-28-132839_heatmap/down.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
DROP TABLE demo_heatmaps;
|
||||
7
migrations/2024-09-28-132839_heatmap/up.sql
Normal file
7
migrations/2024-09-28-132839_heatmap/up.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Your SQL goes here
|
||||
CREATE TABLE IF NOT EXISTS demo_heatmaps (
|
||||
demo_id bigint REFERENCES demo_info(demo_id),
|
||||
steam_id TEXT NOT NULL,
|
||||
data TEXT NOT NULL,
|
||||
PRIMARY KEY (demo_id, steam_id)
|
||||
);
|
||||
Reference in New Issue
Block a user