7 lines
137 B
Ruby
7 lines
137 B
Ruby
class Comment < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :commentable, polymorphic: true
|
|
|
|
validates :body, presence: true
|
|
end
|