]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_entry.rb
Potlatch 0.10
[rails.git] / app / models / diary_entry.rb
index ad334151c37f8eafc786b7a8fe9212c7d6ad523e..5b3d34766d06a17e86fc2a61577829c9e7bc8f41 100644 (file)
@@ -1,3 +1,9 @@
 class DiaryEntry < ActiveRecord::Base
   belongs_to :user
+  has_many :diary_comments, :order => "id"
+
+  validates_presence_of :title, :body
+  validates_numericality_of :latitude, :allow_nil => true
+  validates_numericality_of :longitude, :allow_nil => true
+  validates_associated :user
 end