otwarchive-symphonyarchive/app/models/wrangling_assignment.rb
2026-03-11 22:22:11 +00:00

9 lines
218 B
Ruby

class WranglingAssignment < ApplicationRecord
belongs_to :user
belongs_to :fandom
validates_uniqueness_of :user_id, scope: :fandom_id
validates_presence_of :user_id
validates_presence_of :fandom_id
end