fixed profile meta and game columns

This commit is contained in:
2024-01-29 10:44:46 -05:00
parent 46ff94e62a
commit 6f03007b11
3 changed files with 41 additions and 9 deletions

View File

@@ -4,6 +4,7 @@
BEGIN;
CREATE TABLE IF NOT EXISTS data.profile_meta (
name TEXT,
steam64_id TEXT,
is_collector BOOL,
is_leetify_staff BOOL,

View File

@@ -2,7 +2,7 @@
BEGIN;
SELECT steam64_id, is_collector, is_leetify_staff, is_pro_plan,
SELECT name, steam64_id, is_collector, is_leetify_staff, is_pro_plan,
leetify_user_id, faceit_nickname
FROM data.profile_meta
WHERE FALSE;