comment.rb 174 Bytes Edit Raw Blame History 1 2 3 4 5 class Comment < ActiveRecord::Base validates_presence_of :title, :body belongs_to :article belongs_to :author, :class_name => 'Person', :foreign_key => 'author_id' end