obdev/app/models/worker.rb

9 lines
269 B
Ruby

class Worker < ApplicationRecord
# One-to-many relationship with Participants
has_many :participants, through: :employments
has_many :employments
# Many-to-many relationship with Employers through Participants
has_many :employers, through: :participants
end