Retrospring/app/models/moderation_comment.rb

9 lines
212 B
Ruby

class ModerationComment < ApplicationRecord
belongs_to :user
belongs_to :report
validates :user_id, presence: true
validates :report_id, presence: true
validates :content, length: { maximum: 160 }
end