mirror of
https://github.com/github/rails.git
synced 2026-01-13 16:47:56 -05:00
10 lines
274 B
Ruby
10 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
|