added sqitch and first table
This commit is contained in:
7
sqitch/deploy/data-schema.sql
Normal file
7
sqitch/deploy/data-schema.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Deploy leetify-data:data-schema to pg
|
||||
|
||||
BEGIN;
|
||||
|
||||
CREATE SCHEMA data;
|
||||
|
||||
COMMIT;
|
||||
15
sqitch/deploy/profile-meta.sql
Normal file
15
sqitch/deploy/profile-meta.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
-- Deploy leetify-data:profile-meta to pg
|
||||
-- requires: data-schema
|
||||
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS data.profile_meta (
|
||||
steam64Id TEXT,
|
||||
isCollector BOOL,
|
||||
isLeetifyStaff BOOL,
|
||||
isProPlan BOOL,
|
||||
leetifyUserId TEXT,
|
||||
faceitNickname TEXT
|
||||
);
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user