aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/job.rb
blob: 3333a02e277f17426db0b322dbe0feafb8fdca94 (plain) (blame)
1
2
3
4
5
class Job < ActiveRecord::Base
  has_many :references
  has_many :people, :through => :references
  belongs_to :ideal_reference, :class_name => 'Reference'
end