diff options
Diffstat (limited to 'queries/match.sql')
| -rw-r--r-- | queries/match.sql | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/queries/match.sql b/queries/match.sql index 0ff0c62..8ee527a 100644 --- a/queries/match.sql +++ b/queries/match.sql @@ -1,18 +1,12 @@ SELECT -id AS "match_id", +id AS "apiId", +(attributes->>'createdAt')::timestamp as "createdAt", (attributes->>'duration')::int AS "duration", attributes->>'gameMode' AS "gameMode", -COALESCE(NULLIF(attributes->>'patchVersion', ''), '0')::int AS "patchVersion", -attributes->>'shardId' AS "shard", -attributes->'stats'->>'endGameReason' AS "result", -attributes->'stats'->>'queue' AS "queue", - -false AS "anyAFK", -'' AS "winningTeam", -0 AS "krakenCaptures", -0 AS "laneMinionsSlayed", -0 AS "jungleMinionsSlayed", -0 AS "heroDeaths" +COALESCE(NULLIF(attributes->>'patchVersion', ''), '0') AS "patchVersion", +attributes->>'shardId' AS "shardId", +attributes->'stats'->>'endGameReason' AS "endGameReason", +attributes->'stats'->>'queue' AS "queue" FROM match |
