module ActiveRecord::Delegation

def respond_to_missing?(method, _)

def respond_to_missing?(method, _)
  super || @klass.respond_to?(method)
end