is it possible to undo rake db rollback?

dbmigrate, rollback, ruby, ruby-on-rails

Solution

You can do a `rake db:migrate` to perform the same migration once again.

Problem

I accidentally ran rake db:migrate, and then ran rake db:rollback. Now the database table I had created before is completely gone. Is there any way to undo a rollback, or should I just revert to the most recent branch?

Original source