From b82b0ebab1d62b52f694652994d28cb816e5d4af Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 1 Aug 2018 16:27:25 +0200 Subject: [PATCH] P5-3009 fix permissions on address_id_seq and samples_id_seq --- migrations/000.069.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 migrations/000.069.sql diff --git a/migrations/000.069.sql b/migrations/000.069.sql new file mode 100644 index 0000000..02d23f6 --- /dev/null +++ b/migrations/000.069.sql @@ -0,0 +1,9 @@ +-- P5-3009 fix permissions on sequences + +GRANT ALL ON SEQUENCE addresses_id_seq TO public; +GRANT ALL ON SEQUENCE addresses_id_seq TO root; +GRANT ALL ON SEQUENCE addresses_id_seq TO photowall_user; + +GRANT ALL ON SEQUENCE samples_id_seq TO public; +GRANT ALL ON SEQUENCE samples_id_seq TO root; +GRANT ALL ON SEQUENCE samples_id_seq TO photowall_user;