Flowdock
method

invert_remove_index

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: CommandRecorder
invert_remove_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 172
      def invert_remove_index(args)
        table, options_or_column = *args
        if (options = options_or_column).is_a?(Hash)
          unless options[:column]
            raise ActiveRecord::IrreversibleMigration, "remove_index is only reversible if given a :column option."
          end
          options = options.dup
          [:add_index, [table, options.delete(:column), options]]
        elsif (column = options_or_column).present?
          [:add_index, [table, column]]
        end
      end
Register or log in to add new notes.