18 lines
326 B
PL/PgSQL
18 lines
326 B
PL/PgSQL
-- Deploy numerus:payment_status to pg
|
|
-- requires: roles
|
|
-- requires: schema_numerus
|
|
|
|
begin;
|
|
|
|
set search_path to numerus, public;
|
|
|
|
create table payment_status (
|
|
payment_status text primary key,
|
|
name text not null
|
|
);
|
|
|
|
grant select on table payment_status to invoicer;
|
|
grant select on table payment_status to admin;
|
|
|
|
commit;
|