6 lines
156 B
Ruby
6 lines
156 B
Ruby
|
class Employer < ApplicationRecord
|
||
|
has_many :participants
|
||
|
has_many :workers, through: :participants
|
||
|
# Association with Vendor if needed
|
||
|
end
|
||
|
|