= private = protected
remove_index(table_name, options = {})
Drops an index from a table.
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 862 def remove_index(table_name, options = {}) execute "DROP INDEX #{index_name(table_name, options)}" end