method

create_index_definition

rails latest stable - Class: ActiveRecord::ConnectionAdapters::MySQL::SchemaStatements

Method not available on this version

This method is only available on newer versions. The first available version (v8.1.1) is shown here.

create_index_definition(table_name, name, unique, columns, **options)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/mysql/schema_statements.rb, line 82
        def create_index_definition(table_name, name, unique, columns, **options)
          MySQL::IndexDefinition.new(table_name, name, unique, columns, **options)
        end