method
execute_block
v4.2.1 -
Show latest stable
- Class:
ActiveRecord::Migration
execute_block()private
No documentation available.
# File activerecord/lib/active_record/migration.rb, line 739
def execute_block
if connection.respond_to? :execute_block
super # use normal delegation to record the block
else
yield
end
end