Files
fizzy/app/models/assignment.rb
T
Jason Zimdars 56c7fe4abb Add assignees to a bubble WIP
- Still needs UI to display multiple assignees
- Still needs UI for changing/removing assignees
2024-09-17 17:10:23 -05:00

7 lines
138 B
Ruby

class Assignment < ApplicationRecord
belongs_to :user
belongs_to :bubble
validates :user_id, uniqueness: { scope: :bubble_id }
end