• N
    order should always be concatenated. · 91fec0d2
    Neeraj Singh 提交于
    order that is declared first has highest priority in all cases.
    
    Here are some examples.
    
    Car.order('name desc').find(:first, :order => 'id').name
    
    Car.named_scope_with_order.named_scope_with_another_order
    
    Car.order('id DESC').scoping do
      Car.find(:first, :order => 'id asc')
    end
    
    No special treatment to with_scope or scoping.
    
    Also note that if default_scope declares an order then the order
    declared in default_scope has the highest priority unless
    with_exclusive_scope is used.
    Signed-off-by: NSantiago Pastorino <santiago@wyeworks.com>
    91fec0d2
relations_test.rb 19.7 KB