Merge pull request #695 from psforever/readme-database-fix

Fix `TABLE` -> `DATABASE` in readme
This commit is contained in:
Mazo 2021-02-10 21:44:40 +00:00 committed by GitHub
commit ac7f6e522a
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`.