vote up 0 vote down star

Back when migration version numbers were simply incremented as you created migrations, it was easy enough to do:

rake migrate VERSION=097
rake migrate VERSION=098
rake migrate VERSION=099
rake migrate VERSION=100

...but we now have migration numbers that are something like YYYYMMDDtimeofday. Not that this is a bad thing - it keeps the migration version collisions to a minimum - but when I have 50 migrations and want to step through them one-at-a-time, it is a hassle:

rake migrate VERSION=20090129215142
rake migrate VERSION=20090129219783

...etc. I have to have a list of all the migrations open in front of me, typing out the version numbers to advance by one. Is there anything that would have an easier syntax, like:

rake migrate VERSION=NEXT

or

rake migrate VERSION=PREV

?

flag

39% accept rate

1 Answer

vote up 0 vote down check

You rollback to the previous migration with rake db:rollback. It doesn't look like you can go forward by only one migration though.

link|flag

Your Answer

Get an OpenID
or

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