blob: 1d3d36be0c504786932be1c3d7ed6cba9745f19b (
plain) (
tree)
|
|
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
def table_name
relation.name
end
end
end
end
|