Most of them are exactly the same as we use for Numerus, but with the main application schema changed to camper. Closes #1
11 lines
155 B
PL/PgSQL
11 lines
155 B
PL/PgSQL
-- Deploy camper:schema_auth to pg
|
||
-- requires: roles
|
||
|
||
begin;
|
||
|
||
create schema auth;
|
||
|
||
comment on schema auth is 'To keep user’s passwords safe.';
|
||
|
||
commit;
|