obdev/app/models/participant.rb

11 lines
251 B
Ruby
Raw Normal View History

class Participant < ApplicationRecord
# This makes the association to Employer optional
belongs_to :employer, optional: true
belongs_to :worker, optional: true
# Other associations
has_and_belongs_to_many :programs
has_many :workers
end