Last active 2 months ago

Revision 354cd425d479ab243400a5b16b65819bbaee46c0

stats-v3-migration.sql Raw
1rename table stats_games to stats_sessions;
2create table stats_games
3(
4 id int unsigned auto_increment primary key,
5 uuid uuid default uuid() not null comment 'legacy campaignID' unique,
6 date_start bigint not null comment 'unix timestamp',
7 date_start_finale int null comment 'unix timestamp of finale',
8 date_end bigint null comment 'unix timestamp',
9 duration_game bigint as (`date_end` - `date_start`) comment 'seconds of game',
10 duration_finale bigint as (`date_end` - `date_start_finale`) comment 'seconds of finale',
11 map_id varchar(64) not null comment 'map id of last chapter',
12 gamemode varchar(64) not null,
13 difficulty tinyint null comment '0=easy, 1=normal, 2=advanced, 3=expert',
14 server_tags varchar(255) not null comment 'comma separated list of tags',
15 stat_version tinyint unsigned not null comment 'version of metrics',
16 index stats_games_gamemode_index (gamemode),
17 index stats_games_map_id_index (map_id)
18);
19insert into stats_games (uuid, date_start, date_start_finale, date_end, map_id, gamemode, difficulty, server_tags, stat_version)
20# add stats_games data from session data
21SELECT campaignID, date_start, date_end-finale_time, date_end, map, gamemode, difficulty, server_tags, 0
22FROM stats_sessions group by campaignID
23order by id asc;
24alter table stats_sessions
25 add game_id int unsigned not null after id,
26 # moved to games
27 drop map,
28 drop gamemode,
29 drop difficulty,
30 drop finale_time,
31 drop server_tags,
32 drop DamageDealt,
33 # renamed columns for consistency
34 change zombie_kills kills_common int unsigned default 0 not null,
35 change melee_kills kills_melee smallint(10) unsigned default 0 not null,
36 change SurvivorDamage damage_dealt int unsigned default 0 not null,
37 change SurvivorFFCount damage_dealt_friendly_count int unsigned default 0 not null,
38 change SurvivorFFTakenCount damage_taken_friendly_count int unsigned null,
39 change SurvivorFFDamage damage_dealt_friendly int unsigned null,
40 change SurvivorFFTakenDamage damage_taken_friendly int unsigned null,
41 change MedkitsUsed used_kit_self smallint(10) unsigned default 0 not null comment 'heal self',
42 change FirstAidShared used_kit_other smallint(10) unsigned default 0 not null comment 'healed teammate',
43 add used_kit smallint(11) unsigned as (used_kit_self + used_kit_other) comment 'any usage',
44 change PillsUsed used_pills smallint(10) unsigned default 0 not null,
45 change MolotovsUsed used_molotov smallint(10) unsigned default 0 not null,
46 change PipebombsUsed used_pipebomb smallint(10) unsigned default 0 not null,
47 change BoomerBilesUsed used_bile smallint(10) unsigned default 0 not null,
48 change AdrenalinesUsed used_adrenaline smallint(10) unsigned default 0 not null,
49 change DefibrillatorsUsed used_defib smallint(10) unsigned default 0 not null,
50 change DamageTaken damage_taken int unsigned default 0 not null,
51 change ReviveOtherCount times_revived_other smallint(10) unsigned default 0 not null,
52 change Incaps times_incapped smallint(10) unsigned default 0 not null,
53 change Deaths deaths tinyint(10) unsigned default 0 not null,
54 change boomer_kills kills_boomer smallint(10) unsigned not null,
55 change smoker_kills kills_smoker smallint(10) unsigned not null,
56 change jockey_kills kills_jockey smallint(10) unsigned not null,
57 change hunter_kills kills_hunter smallint(10) unsigned not null,
58 change spitter_kills kills_spitter smallint(10) unsigned not null,
59 change charger_kills kills_charger smallint(10) unsigned not null,
60 change SpecialInfectedKills kills_all_specials int unsigned as (`kills_boomer` + `kills_smoker` + `kills_jockey` + `kills_hunter` + `kills_spitter` + `kills_charger`),
61 modify honks smallint unsigned default 0 null comment 'clowns honked',
62 change WitchesCrowned witches_crowned smallint(8) unsigned default 0 not null,
63 change SmokersSelfCleared smokers_selfcleared smallint(8) unsigned default 0 not null,
64 change RocksHitBy rocks_hitby smallint(8) unsigned default 0 not null,
65 change RocksDodged rocks_dodged smallint(8) unsigned default 0 not null,
66 change HuntersDeadstopped hunters_deadstopped smallint(8) unsigned default 0 not null,
67 change TimesPinned times_pinned smallint(8) unsigned default 0 not null,
68 change ClearedPinned times_cleared_pinned smallint(8) unsigned default 0 null comment 'helped pinned teammate',
69 change BoomedTeammates times_boomed_teammates smallint unsigned default 0 not null,
70 change TimesBoomed times_boomed smallint(8) unsigned default 0 not null,
71 change DamageToTank damage_dealt_tank mediumint unsigned default 0 not null comment 'dmg to tank',
72 change DamageToWitch damage_dealt_witch mediumint unsigned default 0 not null comment 'dmg to witch',
73 change CarAlarmsActivated caralarms_activated tinyint unsigned default 0 not null,
74 # new metrics
75 add longest_shot_distance float null,
76 add times_hanging smallint unsigned default 0 null after times_revived_other,
77 add kills_tank smallint unsigned null after kills_all_specials,
78 add kills_witch smallint unsigned null after kills_tank,
79 add kills_fire smallint unsigned null comment 'gascan/molotov' after kills_witch,
80 add kills_pipebomb smallint unsigned null after kills_fire,
81 add kills_minigun smallint unsigned null after kills_pipebomb,
82 add seconds_alive int unsigned not null,
83 add seconds_idle int unsigned not null,
84 add seconds_dead int unsigned default 0,
85 add seconds_total int unsigned as (seconds_alive + seconds_idle + seconds_dead);
86# get new game id, update seconds_* (not perfect but whatever)
87update stats_sessions u
88join stats_games g on g.uuid = u.campaignID
89SET u.game_id=g.id, u.seconds_alive=duration*60, u.seconds_idle=u.minutes_idle*60;
90# drop rest of columns and add fk
91alter table stats_sessions
92 drop duration,
93 drop date_start,
94 drop date_end,
95 drop minutes_idle,
96 drop index stats_games_campaignID_index,
97 drop key campaignID,
98 drop column campaignID,
99 add constraint stats_sessions_stats_games_id_fk
100 foreign key (game_id)
101 references stats_games (id)
102 on update cascade on delete cascade;
103alter table stats_users
104 change survivor_deaths deaths mediumint(11) unsigned default 0 not null,
105 drop infected_deaths,
106 change survivor_damage_rec damage_taken int(11) unsigned default 0 not null,
107 change survivor_damage_give damage_dealt int(11) unsigned default 0 not null,
108 add damage_dealt_friendly_count mediumint unsigned default 0 not null,
109 add damage_taken_friendly_count mediumint unsigned default 0 null,
110 drop infected_damage_rec,
111 drop infected_damage_give,
112 add pickups_bile mediumint(11) unsigned default 0 not null after pickups_molotov,
113 change pickups_pipe_bomb pickups_pipebomb mediumint(11) unsigned default 0 not null,
114 add pickups_adrenaline mediumint unsigned null after pickups_pills,
115 change survivor_incaps times_incapped mediumint(11) unsigned default 0 not null,
116 change pickups_pain_pills pickups_pills mediumint(11) unsigned default 0 not null after pickups_pipebomb,
117 add times_hanging mediumint(11) unsigned default 0 not null comment 'ledge grabs' after times_incapped,
118 change revived_others times_revived_other mediumint(11) unsigned default 0 not null,
119 change melee_kills kills_melee int(11) unsigned default 0 not null comment 'kils with melee',
120 change tanks_killed kills_tank int(11) unsigned default 0 not null,
121 change tanks_killed_solo kills_tank_solo int unsigned default 0 not null,
122 change tanks_killed_melee kills_tank_melee int unsigned default 0 not null comment 'with melee',
123 change survivor_ff damage_dealt_friendly int unsigned default 0 not null,
124 change survivor_ff_rec damage_taken_friendly int default 0 null comment 'ff recv',
125 change common_kills kills_common int unsigned default 0 null,
126 change common_headshots kills_common_headshots int unsigned default 0 not null,
127 change damage_to_tank damage_dealt_tank int unsigned default 0 null,
128 drop column damage_as_tank,
129 change damage_witch damage_dealt_witch int unsigned default 0 not null,
130 change packs_used used_ammo_packs int unsigned default 0 not null,
131 change ff_kills kills_friendly int unsigned default 0 not null comment 'teammates killed',
132 change damage_molotov damage_dealt_fire int unsigned default 0 not null comment 'gascan/molotov',
133 change kills_molotov kills_fire int unsigned default 0 not null comment 'gascan/molotov',
134 change kills_pipe kills_pipebomb int unsigned default 0 not null,
135 change clowns_honked honks int unsigned default 0 not null comment 'clown honks',
136 change boomer_mellos times_boomed_teammates mediumint unsigned default 0 null comment 'popped boomer and got someone boomed',
137 change boomer_mellos_self times_boomed_self mediumint unsigned default 0 null comment 'popped boomer and got self boomed',
138 add times_boomed mediumint unsigned default 0 null after times_boomed_self,
139 change heal_self used_kit_self mediumint unsigned default 0 not null comment 'healed self',
140 change heal_others used_kit_other mediumint unsigned default 0 not null comment 'healed teammate',
141 add used_kit int as (used_kit_self + used_kit_other) comment 'any usage',
142 change defibs_used used_defib mediumint unsigned default 0 not null after used_kit_other,
143 change pills_used used_pills mediumint unsigned default 0 not null,
144 change adrenaline_used used_adrenaline mediumint unsigned default 0 not null after used_pills,
145 change revived times_revived mediumint unsigned default 0 not null comment 'self got incapped',
146 change cleared_pinned times_cleared_pinned mediumint unsigned default 0 not null comment 'helped survivor that was pinned',
147 add rocks_dodged mediumint unsigned default 0 not null after rocks_hitby,
148 add seconds_alive int unsigned not null,
149 add seconds_idle int unsigned not null,
150 add seconds_dead int unsigned default 0,
151 add seconds_total int unsigned as (seconds_alive + seconds_idle + seconds_dead),
152 change throws_puke used_bile mediumint unsigned default 0 not null comment 'throws',
153 change throws_molotov used_molotov mediumint unsigned default 0 not null comment 'throws',
154 change throws_pipe used_pipebomb mediumint unsigned default 0 not null comment 'throws';
155
156update stats_users
157set seconds_alive = minutes_played * 60, seconds_idle = minutes_idle * 60;
158alter table stats_users
159 drop minutes_played,
160 drop minutes_idle;