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

11 lines
205 B
MySQL
Raw Permalink Normal View History

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