In Rails 2, will removing a column with a Rails migration also change/remove indexes associated with the column? If not, and instead you have to also change/remove each ind
No, unfortunately you have to remove the index manually from within your migration using the remove_index method.