Currently when you push a new branch to heroku no migrations are run automatically.
Instead we need to manually run migrations after each deploy.
By adding the required Procfile we can automate the release steps.
Something like this.
release: rake db:migrate
web: bundle exec puma -C config/puma.rb