method

create_index_definition

rails latest stable - Class: ActiveRecord::ConnectionAdapters::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)
private

No documentation available.

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