aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/job.rb
blob: 6c4dff4bcd5ceff0c60238d21eaa71cdeedf1c7b (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
class Job < ActiveRecord::Base
  has_many :references
  has_many :people, through: :references
  belongs_to :ideal_reference, class_name: "Reference"

  has_many :agents, through: :people
end