Flowdock
method

index_exists?

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: V4_2
index_exists?(table_name, column_name, options = {}) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/migration/compatibility.rb, line 170
        def index_exists?(table_name, column_name, options = {})
          column_names = Array(column_name).map(&:to_s)
          options[:name] =
            if options[:name].present?
              options[:name].to_s
            else
              connection.index_name(table_name, column: column_names)
            end
          super
        end
Register or log in to add new notes.