You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2020. It is now read-only.
Johannes Kvamme edited this page Jan 26, 2019
·
2 revisions
How to set up psql database.
$ psql -U postgres
CREATEDATABASEbachelor;
\c bachelor;
CREATE ROLE bachelor_usr;
GRANT ALL PRIVILEGES ON DATABASE bachelor TO bachelor_usr;
ALTER ROLE bachelor_usr PASSWORD '';
ALTER ROLE bachelor_usr WITH LOGIN: