vote up 2 vote down star

Is there an easy way to run a single migration? I don't want to migrate to a certain version I just want to run a specific one.

flag

3 Answers

vote up 2 vote down check

You can just run the code directly out of the ruby file:

irb
>> require "db/migrate/20090408054532_add_foos.rb"
>> AddFoos.up

An alternative way (without IRB) which relies on the fact that require returns an array of class names:

script/runner 'require("db/migrate/20090408054532_add_foos.rb").first.constantize.up'

Note that if you do this, it probably won't update the schema_migrations table, but it seems like that's what you want anyway.

link|flag
Perfect. Just what I needed. – nan Apr 17 at 20:46
vote up 0 vote down

Is this something that you ran once as a migration because it happened to be needed, then turns out to be a useful query that might need to get run a number of times?

perhaps you should refactor the contents of the migration into a model or other object, then have the migration reference that new location.

Then you can simply execute the new object at your lesure by invoking ruby on the command line.

link|flag
vote up 3 vote down

Assuming fairly recent version of Rails you can always run:

rake db:migrate:up VERSION=20090408054532

Where version is the timestamp in the filename of the migration.

link|flag
This will run migrations up to that version. I was looking for a way to run just a specific migration. – nan Apr 17 at 20:47

Your Answer

Get an OpenID
or

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