I have a migration to run, but before it runs I want to verify certain conditions (i.e. the migration calls an instance method on a model, and I want to ensure that the method exists before running the migration).
With that in mind, I can't find any documentation explaining how to stop the migration if the verification doesn't pass. It seems most likely that raising an exception is the smart way to do this. I found ActiveRecord::Rollback
which looks like a good candidate, because it explicitly rolls back a transaction, but it also has the characteristic of not re-raising once the transaction is rolled back, so I probably won't see any messages I attach to the exception.
I've been searching things like "rails cancel migration" but all the results seem to deal with migrations which have been unintentionally canceled. I want to fail intentionally (and gracefully) in certain conditions instead.
What I ended up doing was actually
raise Exception
, becauseActiveRecord::Rollback
would count the migration as completed and not allow for it to be re-run after fixing the error.