add user to pgsql code example
Example 1: psql create user
# https://www.postgresql.org/docs/8.0/sql-createuser.html
CREATE USER <username> WITH PASSWORD '<password>' VALID UNTIL '<date here>';
Example 2: create new user in postgres
CREATE USER visualscrapy WITH PASSWORD '123456';
# it will create the new user in postgres