Skip to content

Commit

Permalink
Add additional setups for database setup to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rickselby committed Sep 3, 2024
1 parent 8004f8c commit 1376476
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@
create database name;
create user name with password 'password';
grant all privileges on database name to name;
-- connect to new database
grant all on schema public to name;
-- may need this too?
alter user name createdb;
```

0 comments on commit 1376476

Please sign in to comment.