14 lines
390 B
PL/PgSQL
14 lines
390 B
PL/PgSQL
-- Verify leetify-data:profile-game on pg
|
|
|
|
BEGIN;
|
|
|
|
-- XXX Add verifications here.
|
|
SELECT leetify_user_id, ct_Leetify_rating, ct_Leetify_rating_rounds,
|
|
data_source, elo, game_finished_at, game_id, is_cs2, map_name, match_result,
|
|
scores, skill_level, t_leetify_rating, t_leetify_rating_rounds, deaths,
|
|
has_banned_player, kills, party_size
|
|
FROM data.profile_game
|
|
WHERE FALSE;
|
|
|
|
ROLLBACK;
|