public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/ddollar/rails.git
jeremy (author)
Sat Oct 27 12:25:23 -0700 2007
commit  cf3e9664a41b8137556b53efc1b1dbaeae68c079
tree    45c81f155d7e1ac4da4e53f7911b34ac69e6c9ee
parent  1117d73787c13f61b338cb54bf7992f9c6d2a05d
rails / activerecord / test / fixtures / citation.rb
100644 7 lines (5 sloc) 0.258 kb
1
2
3
4
5
6
7
class Citation < ActiveRecord::Base
  belongs_to :reference_of, :class_name => "Book", :foreign_key => :book2_id
 
  belongs_to :book1, :class_name => "Book", :foreign_key => :book1_id
  belongs_to :book2, :class_name => "Book", :foreign_key => :book2_id
end