Files
knifer/migrations/2024-09-28-132839_heatmap/up.sql
Lol3rrr 83b4a24b15 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.
2024-09-29 00:32:20 +02:00

8 lines
198 B
SQL

-- 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)
);