From cbb76f929e80a5eaea50243ad0bf32e1a5a27af2 Mon Sep 17 00:00:00 2001 From: Mazo Date: Wed, 10 Feb 2021 21:44:23 +0000 Subject: [PATCH] Fix `TABLE` -> `DATABASE` in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b77f67d7..86c7c94d 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ The user should be created and made owner of the database. ```sql CREATE USER psforever; ALTER USER psforever WITH PASSWORD 'psforever'; -ALTER TABLE psforever OWNER TO psforever; +ALTER DATABASE psforever OWNER TO psforever; ``` **NOTE:** applying default privileges _after_ importing the schema will not apply them to existing objects. To fix this, *you must drop all objects and try again or apply permissions manually using the Query Tool / `psql`.