I have two models in a has_many relationship such that Log has_many Items. Rails then nicely sets up things like: some_log.items which returns all of the associ
some_log.items
set default_scope in your model class
default_scope
class Item < ActiveRecord::Base default_scope :order => "some_col DESC" end
This will work