Flowdock
method

invert_add_index

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: CommandRecorder
invert_add_index(args) private

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/command_recorder.rb, line 141
      def invert_add_index(args)
        table, columns, options = *args
        options ||= {}

        index_name = options[:name]
        options_hash = index_name ? { name: index_name } : { column: columns }

        [:remove_index, [table, options_hash]]
      end
Register or log in to add new notes.