blob: d27d0af77c5a9dd335c1bd6cc6b0f5af484f4070 (
plain) (
tree)
|
|
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
|