rails/activerecord/test/models/job.rb
2010-10-31 11:21:28 +00:00

8 lines
201 B
Ruby

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