method
remove_index
rails latest stable - Class:
ActiveRecord::Migration::Compatibility::FourTwoShared
remove_index(table_name, options = {})public
No documentation available.
# File activerecord/lib/active_record/migration/compatibility.rb, line 78
def remove_index(table_name, options = {})
options = { column: options } unless options.is_a?(Hash)
options[:name] = index_name_for_remove(table_name, options)
super(table_name, options)
end