setup/doc/postgres-create-db.md

243 B

Create Database with Postgres

  • create a new database and grant privileges to
sudo -u postgres psql -W
CREATE DATABASE <database name>;
GRANT ALL PRIVILEGES ON DATABASE <database name> to <user name>;
\q