blob: f7b0e787b13cbfd71e119e2a9ab80ae5dd7e77f6 (
plain) (
tree)
|
|
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
|