aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/author.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-04-20 18:34:43 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-04-20 18:34:43 -0700
commitb10fb7e7bcb5efea6c93ae52bad125887cfc235c (patch)
treebda34b186b63ac607e7387df935e4d67f3b5123b /activerecord/test/models/author.rb
parent164a94d0bc8c9124ab820506e5ad79496395c026 (diff)
parentde0ea3866370ec61581f910cf393a3cc97eba32f (diff)
downloadrails-b10fb7e7bcb5efea6c93ae52bad125887cfc235c.tar.gz
rails-b10fb7e7bcb5efea6c93ae52bad125887cfc235c.tar.bz2
rails-b10fb7e7bcb5efea6c93ae52bad125887cfc235c.zip
Merge branch 'master' of git@github.com:rails/rails
Diffstat (limited to 'activerecord/test/models/author.rb')
-rw-r--r--activerecord/test/models/author.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/models/author.rb b/activerecord/test/models/author.rb
index 4ffac4fe32..0d9ee36b20 100644
--- a/activerecord/test/models/author.rb
+++ b/activerecord/test/models/author.rb
@@ -25,6 +25,8 @@ class Author < ActiveRecord::Base
has_many :comments_with_order_and_conditions, :through => :posts, :source => :comments, :order => 'comments.body', :conditions => "comments.body like 'Thank%'"
has_many :comments_with_include, :through => :posts, :source => :comments, :include => :post
+ has_many :thinking_posts, :class_name => 'Post', :conditions => { :title => 'So I was thinking' }, :dependent => :delete_all
+ has_many :welcome_posts, :class_name => 'Post', :conditions => { :title => 'Welcome to the weblog' }
has_many :comments_desc, :through => :posts, :source => :comments, :order => 'comments.id DESC'
has_many :limited_comments, :through => :posts, :source => :comments, :limit => 1