otwarchive-sunsetarchive/app/models/wrangling_assignment.rb
2026-03-17 01:16:49 -04:00

9 lines
218 B
Ruby
Executable file

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