instance method invert_change_column_default

Ruby on Rails 6.1.7.10

Since v5.2.8.1 Private

Available in: v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

invert_change_column_default(args)

No documentation comment.

Parameters

args req
Source
# File activerecord/lib/active_record/migration/command_recorder.rb, line 223
        def invert_change_column_default(args)
          table, column, options = args

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

          [:change_column_default, [table, column, from: options[:to], to: options[:from]]]
        end

Defined in activerecord/lib/active_record/migration/command_recorder.rb line 223 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveRecord::Migration::CommandRecorder

Type at least 2 characters to search.

↑↓ navigate · open · esc close