Class: ActiveRecord::Migration::ReversibleBlockHelper

Inherits:
Struct
  • Object
show all
Defined in:
lib/active_record/migration.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#revertingObject

Returns the value of attribute reverting

Returns:

  • (Object)

    the current value of reverting



867
868
869
# File 'lib/active_record/migration.rb', line 867

def reverting
  @reverting
end

Instance Method Details

#downObject



872
873
874
# File 'lib/active_record/migration.rb', line 872

def down
  yield if reverting
end

#upObject



868
869
870
# File 'lib/active_record/migration.rb', line 868

def up
  yield unless reverting
end