mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
f8b53f35b9
Signed-off-by: José Valim <jose.valim@gmail.com>
7 lines
253 B
Ruby
7 lines
253 B
Ruby
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
|