rails/activerecord/test/models/job.rb

10 lines
223 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Job < ActiveRecord::Base
has_many :references
2016-08-06 17:37:57 +00:00
has_many :people, through: :references
belongs_to :ideal_reference, class_name: "Reference"
2010-10-31 11:21:28 +00:00
2016-08-06 17:37:57 +00:00
has_many :agents, through: :people
end