blob: 5458a28cc9676d55ff60664a26691569a6c07989 (
plain) (
tree)
|
|
class Book < ActiveRecord::Base
has_many :authors
has_many :citations, :foreign_key => 'book1_id'
has_many :references, -> { distinct }, :through => :citations, :source => :reference_of
has_many :subscriptions
has_many :subscribers, :through => :subscriptions
end
|