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/table_alias.rb
2010-12-14 16:24:36 -08:00

13 lines
235 B
Ruby

module Arel
module Nodes
class TableAlias < Arel::Nodes::Binary
alias :name :left
alias :relation :right
alias :table_alias :name
def [] name
Attribute.new(self, name)
end
end
end
end