Retrospring/app/models/moderation_comment.rb

9 lines
213 B
Ruby
Raw Normal View History

2014-12-27 05:35:09 -08:00
class ModerationComment < ActiveRecord::Base
belongs_to :user
belongs_to :report
validates :user_id, presence: true
validates :report_id, presence: true
validates :content, length: { maximum: 160 }
end