aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/book.rb
blob: 781f67557b08a55b4e400442a4ab1f9dcb15950d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                               

                   
                                                 
                                                                                   

                         
                                                

                                                
                                                    
   
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: [:proposed, :written, :published]
  enum read_status: {unread: 0, reading: 2, read: 3}
end