class ActiveRecord::Migration::CommandRecorder

def method_missing(method, *args, &block)

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