Flowdock
method

add_group!

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActiveRecord::Base
add_group!(sql, group, 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 1408
        def add_group!(sql, group, scope = :auto)
          if group
            sql << " GROUP BY #{group}"
          else
            scope = scope(:find) if :auto == scope
            if scope && (scoped_group = scope[:group])
              sql << " GROUP BY #{scoped_group}"
            end
          end
        end
Register or log in to add new notes.