Sha256: 1e842bb6836ac990dac7e9ce98febedd5b91a6ce939430ec338f1581dfbb3dcb

Contents?: true

Size: 538 Bytes

Versions: 31

Compression:

Stored size: 538 Bytes

Contents

class Person < ActiveRecord::Base
  has_many :readers
  has_many :posts, :through => :readers
  has_many :posts_with_no_comments, :through => :readers, :source => :post, :include => :comments, :conditions => 'comments.id is null'

  has_many :references
  has_many :jobs, :through => :references
  has_one :favourite_reference, :class_name => 'Reference', :conditions => ['favourite=?', true]
  has_many :posts_with_comments_sorted_by_comment_id, :through => :readers, :source => :post, :include => :comments, :order => 'comments.id'
end

Version data entries

31 entries across 30 versions & 9 rubygems

Version Path
radiant-0.7.2 vendor/rails/activerecord/test/models/person.rb
nbudin-castronaut-0.7.5 vendor/activerecord/test/models/person.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activerecord/pkg/activerecord-2.2.2/test/models/person.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activerecord/test/models/person.rb
factorylabs-castronaut-0.7.5 vendor/activerecord/test/models/person.rb
activerecord-2.2.3 test/models/person.rb
activerecord-2.2.2 test/models/person.rb
activerecord-2.1.1 test/models/person.rb
activerecord-2.1.2 test/models/person.rb
radiant-0.7.0 vendor/rails/activerecord/test/models/person.rb
radiant-0.7.1 vendor/rails/activerecord/test/models/person.rb