1 class DiaryEntry < ActiveRecord::Base
3 has_many :diary_comments, :order => "id"
5 validates_presence_of :title, :body
6 validates_numericality_of :latitude, :allow_nil => true
7 validates_numericality_of :longitude, :allow_nil => true
8 validates_associated :user