I was wondering how you have several default areas (ordering) on the model, for example, I have a comment model that requires ordering by date and statement:
default_scope :order => 'approved ASC', :order => 'date ASC'
So, how do you have both of these orders per model, so I order first approved, and then by date.
Hooray!
source
share