File: pg_cron--1.4--1.4-1.sql

package info (click to toggle)
pg-cron 1.6.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 364 kB
  • sloc: ansic: 3,672; sql: 213; makefile: 28; sh: 27
file content (10 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
/* pg_cron--1.4--1.4-1.sql */

/*
 * pg_dump will read from these sequences. Grant everyone permission
 * to read from the sequence. That way, a user with usage on the cron
 * schema can also do pg_dump. This does not grant write/nextval
 * permission.
 */
GRANT SELECT ON SEQUENCE cron.jobid_seq TO public;
GRANT SELECT ON SEQUENCE cron.runid_seq TO public;