method
remove_index!
Ruby on Rails latest stable (v3.2.13)
-
0 notes -
Class: ActiveRecord::ConnectionAdapters::SQLiteAdapter
remove_index!(table_name, index_name)
public
Hide source
# File activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb, line 380 def remove_index!(table_name, index_name) #:nodoc: exec_query "DROP INDEX #{quote_column_name(index_name)}" end


