Try this in your Today model:
has_many :tasks, :order => 'priority DESC'
EDIT: As mentioned in comment below, in Rails 4+, this is now:
has_many :tasks, -> { order(:priority => :desc) }
(more info here)
Try this in your Today model:
has_many :tasks, :order => 'priority DESC'
EDIT: As mentioned in comment below, in Rails 4+, this is now:
has_many :tasks, -> { order(:priority => :desc) }
(more info here)