setup postgres mac code example
Example 1: postgres install mac
$ brew install postgresql
Example 2: postgresql create database mac
sudo psql -U postgres
psql: FATAL: role "postgres" does not exist
Example 3: postgresql create database mac
postgres=# DROP USER USER_NAME;
DROP ROLE