1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/unqualified_column.rb
2010-09-29 14:32:52 -07:00

19 lines
281 B
Ruby

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