Files
fizzy/app/models/assignment.rb
T
2024-11-21 19:58:21 -06:00

7 lines
162 B
Ruby

class Assignment < ApplicationRecord
belongs_to :bubble, touch: true
belongs_to :assignee, class_name: "User"
belongs_to :assigner, class_name: "User"
end