otwa-aggie/app/models/wrangling_assignment.rb
2026-08-13 00:44:25 -04: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