retrospring/app/models/moderation_vote.rb

7 lines
162 B
Ruby
Raw Normal View History

2014-12-27 14:35:09 +01:00
class ModerationVote < ActiveRecord::Base
belongs_to :user
belongs_to :report
validates :user_id, presence: true
validates :report_id, presence: true
end