I have many migrations which are named by time stamp . I just want to know can I roll back 4th and 5th migrations with out using version number ? i know I can do this way
rake db:rollback VERSION=20150612124515
rake db:rollback VERSION=20150612125015
but I want some other way. may be not possible, I am just curious. I know, I can override application.rb to name migrations like the old way. I don't want that too.
This is not a duplicate of Ruby on Rails: How can I revert a migration with rake db:migrate? because , there he is asking about normal rollback using Version or/and using migrate down method. I know use of this two, I was asking about any other which I mentioned here. Anyway, Thanks Everyone.