1 class Comment < ActiveRecord::Base
6 validates_presence_of :description
8 validates_associated :issue
10 # has_many :attachments, :class_name => "CommentAttachment", :foreign_key => "comment_id", :dependent => :destroy
12 belongs_to :author, :class_name => "User", :foreign_key => "created_by"