aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/book.rb
blob: cfd07abddc83ada2803230e3a43cdd0959af07ed (plain) (blame)
1
2
3
4
class Book < ActiveRecord::Base
  has_many :citations, :foreign_key => 'book1_id'
  has_many :references, :through => :citations, :source => :reference_of, :uniq => true
end