##Migrate a SQLite app to PostgreSQL in order to deploy to Heroku ###Continue only if you're fine dropping your existing database.
- Make a new, empty rails app with PostgreSQL:
$rails new app_name --database=postgresql
- Copy the database.yaml file of your brand new app, and paste it in your old app, replacing the old app's database.yaml file
- Throughout database.yaml, replace the new app’s name with the old app's name
$bundle update
,$db:create
,$db:migrate
- Yay!