create db postgres ubuntu code example
Example: createdb with postgresql on ubuntu
susudo -u postgres
psqlpostgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;