Sha256: 574c91d2756103a3360e61024427238f2f434c8917fcd8551ad42907576c17e1
Contents?: true
Size: 569 Bytes
Versions: 20
Compression:
Stored size: 569 Bytes
Contents
# frozen_string_literal: true module ActiveRecord class Migration # The default strategy for executing migrations. Delegates method calls # to the connection adapter. class DefaultStrategy < ExecutionStrategy # :nodoc: private def method_missing(method, ...) connection.send(method, ...) end def respond_to_missing?(method, include_private = false) connection.respond_to?(method, include_private) || super end def connection migration.connection end end end end
Version data entries
20 entries across 20 versions & 2 rubygems