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