15 lines
277 B
MySQL
15 lines
277 B
MySQL
|
-- Deploy camper:schema_camper to pg
|
||
|
-- requires: roles
|
||
|
|
||
|
begin;
|
||
|
|
||
|
create schema camper;
|
||
|
|
||
|
comment on schema camper is 'The main application schema';
|
||
|
|
||
|
grant usage on schema camper to guest;
|
||
|
grant usage on schema camper to employee;
|
||
|
grant usage on schema camper to admin;
|
||
|
|
||
|
commit;
|