Flowdock
method

add_order!

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ActiveRecord::Base
add_order!(sql, order, scope = :auto) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/base.rb, line 1124
        def add_order!(sql, order, scope = :auto)
          scope = scope(:find) if :auto == scope
          scoped_order = scope[:order] if scope
          if order
            sql << " ORDER BY #{order}"
            sql << ", #{scoped_order}" if scoped_order
          else
            sql << " ORDER BY #{scoped_order}" if scoped_order
          end
        end
Register or log in to add new notes.