final/app/models/article_comment.rb

7 lines
165 B
Ruby

class ArticleComment < ActiveRecord::Base
belongs_to :article, counter_cache: 'comments_count'
belongs_to :user
validates :content, length: {minimum: 10}
end