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
128 B
PL/PgSQL
11 lines
128 B
PL/PgSQL
-- Revert camper:roles from pg
|
|
|
|
begin;
|
|
|
|
drop role authenticator;
|
|
drop role admin;
|
|
drop role employee;
|
|
drop role guest;
|
|
|
|
commit;
|