blob: 1e030b4f59b3d62e1bf50832a3f06e6349dcced6 (
plain) (
blame)
1
2
3
4
5
6
7
|
class Book < ActiveRecord::Base
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
|