leetify-data/sqitch/verify/profile-game.sql

14 lines
390 B
MySQL
Raw Permalink Normal View History

2024-01-26 21:39:33 -05:00
-- Verify leetify-data:profile-game on pg
BEGIN;
-- XXX Add verifications here.
2024-01-29 20:26:56 -05:00
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
2024-01-26 21:39:33 -05:00
FROM data.profile_game
WHERE FALSE;
ROLLBACK;