- Database config
- Databases are not just created
rake db:create
if using postgres - Migrations vis
rake db:migrate
- Make a new migration
rake generate:migration {name of migration}
- Torch db via
rake db:drop
brew install postgres
Follow instructions to setup first db
- Ensure you have heroku toolbelt
- Run
heroku create
- Run
heroku run "rake db:migrate"
to migrate your servers database - Poke it with
heroku run bash
to spawn a "ssh" session on heroku