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
# 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;