Module: ActiveRecord::ConnectionAdapters::DSQL::SchemaStatements

Included in:
ActiveRecord::ConnectionAdapters::DSQLAdapter
Defined in:
lib/active_record/connection_adapters/dsql/schema_statements.rb

Instance Method Summary collapse

Instance Method Details

#add_index_options(table_name, column_name, **options) ⇒ Object

:nodoc:



7
8
9
10
# File 'lib/active_record/connection_adapters/dsql/schema_statements.rb', line 7

def add_index_options(table_name, column_name, **options) # :nodoc:
  options[:algorithm] = :async
  super
end