added sqitch and first table
This commit is contained in:
7
sqitch/verify/data-schema.sql
Normal file
7
sqitch/verify/data-schema.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Verify leetify-data:data-schema on pg
|
||||
|
||||
BEGIN;
|
||||
|
||||
SELECT pg_catalog.has_schema_privilege('data', 'usage');
|
||||
|
||||
ROLLBACK;
|
||||
10
sqitch/verify/profile-meta.sql
Normal file
10
sqitch/verify/profile-meta.sql
Normal 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;
|
||||
Reference in New Issue
Block a user