mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
fix: order of global stats
This commit is contained in:
parent
027b6b2f3b
commit
b1466c4063
1 changed files with 2 additions and 2 deletions
|
|
@ -34,9 +34,9 @@ class MatchRepository {
|
||||||
public async globalStats(puuid: string) {
|
public async globalStats(puuid: string) {
|
||||||
const query = `
|
const query = `
|
||||||
SELECT
|
SELECT
|
||||||
SUM(match_players.assists) as assists,
|
|
||||||
SUM(match_players.deaths) as deaths,
|
|
||||||
SUM(match_players.kills) as kills,
|
SUM(match_players.kills) as kills,
|
||||||
|
SUM(match_players.deaths) as deaths,
|
||||||
|
SUM(match_players.assists) as assists,
|
||||||
SUM(match_players.minions) as minions,
|
SUM(match_players.minions) as minions,
|
||||||
SUM(matches.game_duration) as time,
|
SUM(matches.game_duration) as time,
|
||||||
SUM(match_players.vision_score) as vision,
|
SUM(match_players.vision_score) as vision,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue