Skip to content

Instantly share code, notes, and snippets.

@kiasaki
Last active August 29, 2015 14:27
Show Gist options
  • Save kiasaki/005ab1e7202a7d302aee to your computer and use it in GitHub Desktop.
Save kiasaki/005ab1e7202a7d302aee to your computer and use it in GitHub Desktop.
PostgreSQL new project

Open a psql session (generally psql postgres if installed with homebrew on mac)

Then:

CREATE ROLE "<user_name>" WITH SUPERUSER LOGIN PASSWORD '<user_password>';
CREATE DATABASE "<database_name>" WITH OWNER "<user_name>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment