When trying to set up indices on a set of mysql tables, a number of annoying errors can occur that necessitate re-running a migration.
This simple hack lets you specify a :force => true on add_index or remove_index calls.
# Allows you to specify indices to add in a migration that will only be created if they [...]