Flowdock
method

invert_change_column_comment

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: CommandRecorder
invert_change_column_comment(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 250
        def invert_change_column_comment(args)
          table, column, options = *args

          unless options && options.is_a?(Hash) && options.has_key?(:from) && options.has_key?(:to)
            raise ActiveRecord::IrreversibleMigration, "change_column_comment is only reversible if given a :from and :to option."
          end

          [:change_column_comment, [table, column, from: options[:to], to: options[:from]]]
        end
Register or log in to add new notes.