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-22 15:59:10 -07:00

17 lines
249 B
Ruby

module Arel
module Nodes
class UnqualifiedColumn
def initialize attribute
@attribute = attribute
end
def column
@attribute.column
end
def name
@attribute.name
end
end
end
end