class ActiveRecord::Migration::CommandRecorder

def method_missing(method, ...)

Forwards any missing method call to the \target.
def method_missing(method, ...)
  if delegate.respond_to?(method)
    delegate.public_send(method, ...)
  else
    super
  end
end