blob: 9882cb08e2ec2ef783c0e9141558bcdd68a36ff0 (
plain) (
tree)
|
|
module Arel
module Nodes
class UnqualifiedColumn
attr_accessor :attribute
def initialize attribute
@attribute = attribute
end
def column
@attribute.column
end
def name
@attribute.name
end
end
end
end
|