-
Notifications
You must be signed in to change notification settings - Fork 1
Test DB setup
Ian edited this page Aug 4, 2017
·
2 revisions
# Log into psql with default user and database you already have
➜ Advanced Software Engineering psql -U ianjohnson -d postgres
postgres=# create database testeventscalendar;
postgres=# create role ase4156;
postgres=# alter role ase4156 with login;
postgres=# alter role ase4156 with password '';
postgres=# alter database testeventscalendar owner to ase4156;