Hello I am trying to deploy my rails app from cloud9 via git to heroku. I am able to push all of my changes to git and then push the data to heroku with
git push heroku master
next I migrate my database to heroku
heroku run rake db:migrate
However, when I visit the app on heroku, my data from the database does not show up. How can I fix this?