method

add_index

Importance_0
v8.0.0 - Show latest stable - 0 notes - Class: V7_0
add_index(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 105
        def add_index(table_name, column_name, **options)
          options[:name] = legacy_index_name(table_name, column_name) if options[:name].nil?
          super
        end
Register or log in to add new notes.