camper/deploy/grant_select_on_payment_sta...

12 lines
274 B
PL/PgSQL

-- Deploy camper:grant_select_on_payment_status_to_guest to pg
-- requires: roles
-- requires: payment_status
-- requires: payment_status_i18n
begin;
grant select on table camper.payment_status to guest;
grant select on table camper.payment_status_i18n to guest;
commit;