1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

TableAlias leg ordering has changed, so change accordingly

This commit is contained in:
Aaron Patterson 2011-03-30 09:54:46 -07:00
parent 2be383b946
commit cfb6f77ac0

View file

@ -22,7 +22,7 @@ module ActiveRecord
end
def aliased_table
Arel::Nodes::TableAlias.new aliased_table_name, table
Arel::Nodes::TableAlias.new table, aliased_table_name
end
def ==(other)