heroku logs # visualize the logs executions of the website
heroku pg:reset SHARED_DATABASE # To drop the database, if using SHARED_DATABASE_URL
heroku run rake db:migrate # To recreate the database with nothing in it
heroku run rake db:seed # To populate the database with your seed data
heroku run rake db:setup # You can combine the last two into one action by executing this