Fix TABLE -> DATABASE in readme

This commit is contained in:
Mazo 2021-02-10 21:44:23 +00:00 committed by GitHub
parent d3d8fd912e
commit cbb76f929e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`.