class DiaryEntry < ActiveRecord::Base
belongs_to :user
has_many :diary_comments, :include => :user,
class DiaryEntry < ActiveRecord::Base
belongs_to :user
has_many :diary_comments, :include => :user,
:order => "diary_comments.id"
validates_presence_of :title, :body
:order => "diary_comments.id"
validates_presence_of :title, :body