summaryrefslogtreecommitdiff
path: root/src/db/migrations/0001.sql
blob: 9f6f31230908157da0fd4457ecb9f7e4363c6d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
BEGIN TRANSACTION;
SET search_path = public;

-- Migration Start
CREATE ROLE rest_anon NOLOGIN;
CREATE ROLE rest_user NOLOGIN;
GRANT rest_anon TO authenticator;
GRANT rest_user TO authenticator;
-- Migration End;

-- Set Current Revision
UPDATE sys.database_info SET curr_revision = 2 WHERE name = current_database();

COMMIT TRANSACTION;