15 lines
284 B
MySQL
15 lines
284 B
MySQL
|
-- Deploy numerus:schema_numerus to pg
|
||
|
-- requires: roles
|
||
|
|
||
|
begin;
|
||
|
|
||
|
create schema numerus;
|
||
|
|
||
|
comment on schema numerus is 'The main application schema';
|
||
|
|
||
|
grant usage on schema numerus to guest;
|
||
|
grant usage on schema numerus to invoicer;
|
||
|
grant usage on schema numerus to admin;
|
||
|
|
||
|
commit;
|