scinote-web/app/models/project_comment.rb
2017-06-28 15:21:32 +02:00

9 lines
210 B
Ruby

class ProjectComment < Comment
belongs_to :project,
foreign_key: :associated_id,
inverse_of: :project_comments,
optional: true
validates :project, presence: true
end