Creating Users in Postgres Database for Azure

create database hobes_staging;

create user hobes_staging with encrypted password '<X8sasqHQRze';

grant all privileges on database hobes_staging to hobes_staging;

alter user hobes_staging with encrypted password '<X8sasqHQRze';

create database hobes_prod;

create user hobes_prod with encrypted password 'xBe1xYsaSfWGpTtn6';

grant all privileges on database hobes_prod to hobes_prod;

alter user hobes_prod with encrypted password 'xBe1xYsaSfWGpTtn6';