Skip to content

Instantly share code, notes, and snippets.

@sunloverz
Created June 1, 2015 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunloverz/c86821da14d8fdd0c4fa to your computer and use it in GitHub Desktop.
Save sunloverz/c86821da14d8fdd0c4fa to your computer and use it in GitHub Desktop.
Create user and database in postgresql
sudo -u postgres psql
postgres=# create user "guy_on_stackoverflow" with password 'keepitonthedl';
postgres=# create database "dcaclab_development" owner "guy_on_stackoverflow";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment