So I jumped onto this Rails project at work and I have my own copy of it running on my local devbox. I tried to run the tests to see what the results were but rake came back complaining that I had 5 outstanding migrations to do first. I first just tried running rake db:migrate
but that didn't work due to the migrations trying to create tables that already existed. It was then I realized that these migrations have already been run, but for some reason it thinks it is currently at an older migration.
Is there any way to make Rake move forward in the migration history without doing a rollback and redoing the migration?