mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
281 B
Ruby
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
|