Skip to content

Instantly share code, notes, and snippets.

@sidazhang
Forked from scottlingran/workbitch.md
Created March 11, 2013 00:34
Show Gist options
  • Save sidazhang/5131183 to your computer and use it in GitHub Desktop.
Save sidazhang/5131183 to your computer and use it in GitHub Desktop.
$ psql -U postgres

### CREATION w/o Password
$ createuser
# fill shit in
$ createdb <databasename>
$ psql -U postgres
$ alter user <username>;
# ALTER USER
$ grant all privileges on database (databasename) to (username);
$ \q
$ rake db:migrate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment