method

respond_to_missing?

respond_to_missing?(method, include_private = false)
private

No documentation available.

# File activerecord/lib/active_record/migration.rb, line 786
        def respond_to_missing?(method, include_private = false)
          return false if nearest_delegate == delegate
          nearest_delegate.respond_to?(method, include_private)
        end