From 60d3abc6ecdc21b4ab921d34a55b4af48690f55a Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 11 Mar 2021 18:53:14 +0100 Subject: Rewrote the whole website to get rid on a heavy theme --- content/en/blog/miscellaneous/postgresql-read-only.md | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 content/en/blog/miscellaneous/postgresql-read-only.md (limited to 'content/en/blog/miscellaneous/postgresql-read-only.md') diff --git a/content/en/blog/miscellaneous/postgresql-read-only.md b/content/en/blog/miscellaneous/postgresql-read-only.md deleted file mode 100644 index c064e97..0000000 --- a/content/en/blog/miscellaneous/postgresql-read-only.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Grant postgresql read only access" -linkTitle: "Grant postgresql read only access" -date: 2015-11-24 -description: > - Grant postgresql read only access ---- - -{{< highlight sh >}} -GRANT CONNECT ON DATABASE "db" TO "user"; -\c db -GRANT USAGE ON SCHEMA public TO "user"; -GRANT SELECT ON ALL TABLES IN SCHEMA public TO "user"; -ALTER DEFAULT PRIVILEGES IN SCHEMA public - GRANT SELECT ON TABLES TO "user"; -{{< /highlight >}} - -- cgit v1.2.3