Skip to content

Commit

Permalink
Update new-install.md
Browse files Browse the repository at this point in the history
Instructions Update

Signed-off-by: Sean P. Goggins <outdoors@acm.org>
  • Loading branch information
sgoggins authored Aug 27, 2024
1 parent 70c2eec commit fe11b0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/new-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ GRANT ALL PRIVILEGES ON DATABASE augur TO augur;

**If you're using PostgreSQL 15 or later**, default database permissions will prevent Augur's installer from configuring the database. Add one last line after the above to fix this:
```sql
GRANT ALL ON SCHEMA public TO augur;
\connect augur
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO augur;
GRANT ALL PRIVILEGES ON SCHEMA public TO augur;
```

After that, return to your user by exiting `psql`
Expand Down

0 comments on commit fe11b0e

Please sign in to comment.