method

respond_to_missing?

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