add new user in table postgresql code example
Example 1: create postgres user
CREATE DATABASE yourdbname;
CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass';
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
Example 2: how to add user to role postgresql
GRANT group_role TO role1, ... ;
REVOKE group_role FROM role1, ... ;