method
respond_to_missing?
v7.2.3 -
Show latest stable
- Class:
ActiveRecord::Migration::DefaultStrategy
respond_to_missing?(method, include_private = false)private
No documentation available.
# File activerecord/lib/active_record/migration/default_strategy.rb, line 13
def respond_to_missing?(method, include_private = false)
connection.respond_to?(method, include_private) || super
end