1.2.0: Refined all 6D calcs and UI/UX Experiences.
This commit is contained in:
@@ -195,6 +195,13 @@ CREATE TABLE IF NOT EXISTS fact_match_players (
|
||||
flash_assists INTEGER,
|
||||
flash_duration REAL,
|
||||
jump_count INTEGER,
|
||||
|
||||
-- Utility Usage Stats (Parsed from round details)
|
||||
util_flash_usage INTEGER DEFAULT 0,
|
||||
util_smoke_usage INTEGER DEFAULT 0,
|
||||
util_molotov_usage INTEGER DEFAULT 0,
|
||||
util_he_usage INTEGER DEFAULT 0,
|
||||
util_decoy_usage INTEGER DEFAULT 0,
|
||||
damage_total INTEGER,
|
||||
damage_received INTEGER,
|
||||
damage_receive INTEGER,
|
||||
@@ -365,6 +372,14 @@ CREATE TABLE IF NOT EXISTS fact_match_players_t (
|
||||
year TEXT,
|
||||
sts_raw TEXT,
|
||||
level_info_raw TEXT,
|
||||
|
||||
-- Utility Usage Stats (Parsed from round details)
|
||||
util_flash_usage INTEGER DEFAULT 0,
|
||||
util_smoke_usage INTEGER DEFAULT 0,
|
||||
util_molotov_usage INTEGER DEFAULT 0,
|
||||
util_he_usage INTEGER DEFAULT 0,
|
||||
util_decoy_usage INTEGER DEFAULT 0,
|
||||
|
||||
PRIMARY KEY (match_id, steam_id_64),
|
||||
FOREIGN KEY (match_id) REFERENCES fact_matches(match_id) ON DELETE CASCADE
|
||||
);
|
||||
@@ -466,6 +481,14 @@ CREATE TABLE IF NOT EXISTS fact_match_players_ct (
|
||||
year TEXT,
|
||||
sts_raw TEXT,
|
||||
level_info_raw TEXT,
|
||||
|
||||
-- Utility Usage Stats (Parsed from round details)
|
||||
util_flash_usage INTEGER DEFAULT 0,
|
||||
util_smoke_usage INTEGER DEFAULT 0,
|
||||
util_molotov_usage INTEGER DEFAULT 0,
|
||||
util_he_usage INTEGER DEFAULT 0,
|
||||
util_decoy_usage INTEGER DEFAULT 0,
|
||||
|
||||
PRIMARY KEY (match_id, steam_id_64),
|
||||
FOREIGN KEY (match_id) REFERENCES fact_matches(match_id) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user