]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/diary_entry.rb
Add support for commenting on, and replying to, diary entries.
[rails.git] / app / models / diary_entry.rb
index 8894f44355cddb66feb936e40a3eb61e85ef2668..5b3d34766d06a17e86fc2a61577829c9e7bc8f41 100644 (file)
@@ -1,5 +1,6 @@
 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