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.
|
|
You can just run the code directly out of the ruby file:
An alternative way (without IRB) which relies on the fact that require returns an array of class names:
Note that if you do this, it probably won't update the |
||
|
|
|
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. |
||
|
|
|
|
Assuming fairly recent version of Rails you can always run:
Where version is the timestamp in the filename of the migration. |
||
|
