-- 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;