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