Froze rails gems
[depot.git] / vendor / rails / activerecord / test / models / book.rb
1 class Book < ActiveRecord::Base
2 has_many :citations, :foreign_key => 'book1_id'
3 has_many :references, :through => :citations, :source => :reference_of, :uniq => true
4 end