8 lines
222 B
Ruby
8 lines
222 B
Ruby
|
class Worker < ApplicationRecord
|
||
|
# One-to-many relationship with Participants
|
||
|
has_many :participants
|
||
|
|
||
|
# Many-to-many relationship with Employers through Participants
|
||
|
has_many :employers, through: :participants
|
||
|
end
|