blob: acbd484c6900c91bd5aa57f99843e8f674fd3712 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
grant usage on schema pgq to public;
-- old default grants
grant select on table pgq.consumer to public;
grant select on table pgq.queue to public;
grant select on table pgq.tick to public;
grant select on table pgq.queue to public;
grant select on table pgq.subscription to public;
grant select on table pgq.event_template to public;
grant select on table pgq.retry_queue to public;
|