1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/models/book.rb
2010-09-26 22:25:25 +10:00

9 lines
274 B
Ruby

class Book < ActiveRecord::Base
has_many :authors
has_many :citations, :foreign_key => 'book1_id'
has_many :references, :through => :citations, :source => :reference_of, :uniq => true
has_many :subscriptions
has_many :subscribers, :through => :subscriptions
end