¿Cómo agrego un usuario a una base de datos de Postgres? CLI
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
Blue Bug
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;
psql=# grant all privileges on database <dbname> to <username>
sudo -u postgres psqlpostgres=# create database mydb;postgres=# create user myuser with encrypted password 'mypass';postgres=# grant all privileges on database mydb to myuser;