class ActiveRecord::Migration::CommandRecorder
def method_missing(method, *args, &block)
def method_missing(method, *args, &block) if delegate.respond_to?(method) delegate.public_send(method, *args, &block) else super end end
def method_missing(method, *args, &block) if delegate.respond_to?(method) delegate.public_send(method, *args, &block) else super end end