15 lines
271 B
MySQL
15 lines
271 B
MySQL
|
-- Deploy tipus:schema_tipus to pg
|
||
|
-- requires: roles
|
||
|
|
||
|
begin;
|
||
|
|
||
|
create schema tipus;
|
||
|
|
||
|
comment on schema tipus is 'The main application schema';
|
||
|
|
||
|
grant usage on schema tipus to guest;
|
||
|
grant usage on schema tipus to publisher;
|
||
|
grant usage on schema tipus to admin;
|
||
|
|
||
|
commit;
|