14 lines
379 B
MySQL
14 lines
379 B
MySQL
|
|
-- Verify leetify-data:profile-game on pg
|
||
|
|
|
||
|
|
BEGIN;
|
||
|
|
|
||
|
|
-- XXX Add verifications here.
|
||
|
|
SELECT leetifyUserId, ctLeetifyRating, ctLeetifyRatingRounds, dataSource, elo,
|
||
|
|
gameFinishedAt, gameId, isCs2, mapName, matchResult, scores, skillLevel,
|
||
|
|
tLeetifyRating, tLeetifyRatingRounds, deaths, hasBannedPlayer,
|
||
|
|
kills, partySize
|
||
|
|
FROM data.profile_game
|
||
|
|
WHERE FALSE;
|
||
|
|
|
||
|
|
ROLLBACK;
|