summaryrefslogtreecommitdiff
path: root/app/models/title_award.rb
blob: ef74958d72285837e9f8e210fd09ba9d70026293 (plain)
1
2
3
4
5
6
class TitleAward < ApplicationRecord
  belongs_to :title
  belongs_to :character

  validates :character_id, uniqueness: { scope: :title_id }
end