feature/share-libs
rb 8 lines 187 Bytes
Raw
1 class Comment < ApplicationRecord
2 belongs_to :user
3
4 belongs_to :commentable, polymorphic: true
5 has_many :comments, as: :commentable
6
7 validates :body, :user_id, presence: true
8 end