scinote-web/app/models/project_comment.rb

6 lines
124 B
Ruby
Raw Normal View History

class ProjectComment < Comment
belongs_to :project, foreign_key: :associated_id
2016-02-12 23:52:43 +08:00
validates :project, presence: true
2016-02-12 23:52:43 +08:00
end