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