Module: SchemaPlus::Indexes::ActiveRecord::Migration::CommandRecorder

Defined in:
lib/schema_plus/indexes/active_record/migration/command_recorder.rb

Instance Method Summary collapse

Instance Method Details

#invert_add_index(args) ⇒ Object

inversion of add_index will be remove_index. add if_exists option for cases where the index doesn’t actually exist



8
9
10
11
12
# File 'lib/schema_plus/indexes/active_record/migration/command_recorder.rb', line 8

def invert_add_index(args)
  super.tap { |(command, (arg, options))|
    options[:if_exists] = true
  }
end