Skip to content

Instantly share code, notes, and snippets.

@svfat
Last active September 7, 2017 08:33
Show Gist options
  • Save svfat/5f312089da90ae49372c to your computer and use it in GitHub Desktop.
Save svfat/5f312089da90ae49372c to your computer and use it in GitHub Desktop.
postgresql create new db
sudo su - postgres
psql
CREATE DATABASE myproject;
CREATE USER myproject WITH PASSWORD 'myproject';
ALTER ROLE myproject SET client_encoding TO 'utf8';
ALTER ROLE myproject SET default_transaction_isolation TO 'read committed';
ALTER ROLE myproject SET timezone TO 'UTC';
ALTER ROLE myproject CREATEDB;
GRANT ALL PRIVILEGES ON DATABASE myproject TO myproject;
\q
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment