blob: 2820dba9d2266c403d07a823627809fda821ad36 (
plain) (
tree)
|
|
module Arel
module Nodes
class UnqualifiedColumn < Arel::Nodes::Unary
alias :attribute :expr
alias :attribute= :expr=
def relation
@expr.relation
end
def column
@expr.column
end
def name
@expr.name
end
end
end
end
|