Sha256: 73a8e4050d6fed2f6fad84bccd5b85ed44a42d75a0e3b8ef71e839cc57bbf0b3

Contents?: true

Size: 274 Bytes

Versions: 2

Compression:

Stored size: 274 Bytes

Contents

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
activerecord-nuodb-adapter-2.0.3 test/models/book.rb
activerecord-nuodb-adapter-2.0 test/models/book.rb