added sqitch and first table

This commit is contained in:
2024-01-24 23:13:31 -05:00
parent b6ff046116
commit 0db1ffd667
9 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
-- Verify leetify-data:data-schema on pg
BEGIN;
SELECT pg_catalog.has_schema_privilege('data', 'usage');
ROLLBACK;

View File

@@ -0,0 +1,10 @@
-- Verify leetify-data:profile-meta on pg
BEGIN;
SELECT steam64Id, isCollector, isLeetifyStaff,
isProPlan, leetifyUserId, faceitNickname
FROM data.profile_meta
WHERE FALSE;
ROLLBACK;