Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following Rails 3 migration file db\migrate\20100905201547_create_blocks.rb

How can I specifically roll back that migration file, allow me to the do: rake db:reset, followed by rake db:migrate?

share|improve this question
Does this address the issue? You'll just need to do Class.down stackoverflow.com/questions/753919/run-a-single-migration-file – danivovich Sep 5 '10 at 20:39
I want to go down not up – AnApprentice Sep 5 '10 at 20:56
Every information on migrations Here – Nishutosh Sharma Jan 2 at 6:08

3 Answers

up vote 106 down vote accepted
rake db:rollback STEP=2

Is probably a better way to do this. You can substitute 2 for however many migrations you want to go back.

share|improve this answer
This might have unwanted consequences if people don't realize that this will also rollback any migrations that happened after the target migration as well. – thekingoftruth Apr 1 at 20:19

rake db:migrate:down VERSION=20100905201547 will roll back the specific file. See http://guides.rubyonrails.org/migrations.html#running-specific-migrations.

share|improve this answer
This was a lifesaver! – thatmiddleway Jan 17 at 13:58
4  
Definitely the preferred answer in my opinion. – streetlogics Feb 27 at 17:07

Answer:

rake db:migrate:reset: (2.0.2) Drop the database, create it and then re-apply all migrations. The considerations outlined in the note to rake db:create apply.

share|improve this answer
4  
Re-applying migrations is NOT the way to go.. – Ben Nov 15 '12 at 19:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.