scinote-web/app/models/project_comment.rb
2016-02-12 16:52:43 +01:00

8 lines
259 B
Ruby

class ProjectComment < ActiveRecord::Base
validates :comment, :project, presence: true
validates :project_id, uniqueness: { scope: :comment_id }
belongs_to :comment, inverse_of: :project_comment
belongs_to :project, inverse_of: :project_comments
end