Removing a MySQL index using a ruby on rails migration
I ran into a bit of a problem with the standard documentation regarding the removal of an index by way of a ruby on rails migration… at least with some of the old data living out on the web. My initial searches produced an incorrect method: remove_index :table_name, :named_index The correct method is: remove_index :table_name, [...]