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

11 lines
205 B
MySQL
Raw Normal View History

2024-01-24 23:13:31 -05:00
-- Verify leetify-data:profile-meta on pg
BEGIN;
2024-01-29 10:44:46 -05:00
SELECT name, steam64_id, is_collector, is_leetify_staff, is_pro_plan,
2024-01-29 10:15:37 -05:00
leetify_user_id, faceit_nickname
2024-01-24 23:13:31 -05:00
FROM data.profile_meta
WHERE FALSE;
ROLLBACK;