14 lines
379 B
PL/PgSQL
14 lines
379 B
PL/PgSQL
-- 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;
|