aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/book.rb
blob: 997c088176a07390fb6e9fa58cc7fadcdeb1f373 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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
  
  enum status: %i( proposed written published )
end