I want to sort by two columns, one is a DateTime (updated_at), and the other is a Decimal (Price)
updated_at
I would like to be able to sort first by updated_at, t
Thing.find(:all, :order => "updated_at desc, price asc")
will do the trick.
Thing.all.order("updated_at DESC, price ASC")
is the Rails 3 way to go. (Thanks @cpursley)