Say I create a branch (new_branch). In that branch, a migration (migration_1) is created.
Later, I switch back to master. I then create a migration (migration_2), push to Heroku, and run migrations on Heroku.
Later still, I merge new_branch into master, and then push master to Heroku.
When I try to run migrations on Heroku, won't migration_1 be skipped over and not run, because it was created before migration_2, which has already been run?