added profile_game table

This commit is contained in:
2024-01-26 21:39:33 -05:00
parent ed0d8d2389
commit ce845eb0b2
4 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
-- 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;