6 lines
121 B
Ruby
6 lines
121 B
Ruby
|
class Participant < ApplicationRecord
|
||
|
belongs_to :employer
|
||
|
has_and_belongs_to_many :programs
|
||
|
has_many :workers
|
||
|
end
|