Skip to content

Instantly share code, notes, and snippets.

@dhoss
Created May 22, 2015 21:57
Show Gist options
  • Save dhoss/e230ccb4c30ad902bd27 to your computer and use it in GitHub Desktop.
Save dhoss/e230ccb4c30ad902bd27 to your computer and use it in GitHub Desktop.
play-slick+pg tutorial create db snippet
psql -c "create database steel_test;" -U postgres
psql -c "create user steel_test with password 'test';" -U postgres
psql -c "grant all privileges on database steel_test to steel_test;" -U postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment