How to clean out and seed a Rails app database on heroku

Since heroku doesn't allow for destructive commands, such as:

heroku run rake db:setup

You will need to use alternative commands, the equivalent commands are:

heroku pg:reset

heroku run rake db:migrate

heroku run rake db:seed