2024-01-16 20:54:44 -06:00
|
|
|
class Worker < ApplicationRecord
|
|
|
|
# One-to-many relationship with Participants
|
2024-01-22 22:57:37 -06:00
|
|
|
has_many :participants, through: :employments
|
|
|
|
has_many :employments
|
2024-01-16 20:54:44 -06:00
|
|
|
|
|
|
|
# Many-to-many relationship with Employers through Participants
|
|
|
|
has_many :employers, through: :participants
|
|
|
|
end
|