blob: a527e41a8a69e0be82e23f3a77584fa7b1b0fb1f (
plain) (
tree)
|
|
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]
end
|