Postgresql User Login

For the Hedgedoc migration, I had to create a new role and forgot to add the necessary permissions to allow this role to login.

psql -U postgres
ALTER ROLE "hedgedoc" WITH LOGIN;
Source:

permissions - PostgreSQL: role is not permitted to log in - Stack Overflow