aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/comments.yml
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-10 15:49:49 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-10 15:49:49 +0000
commitfdd268138a062b45aa126c21ee3d5579f01c3f2e (patch)
tree28c593bd479bb8be02e4b028a8c0e1bc4fe638dd /activerecord/test/fixtures/comments.yml
parent2119e0699a182575349b1c3a311b182e171e097c (diff)
downloadrails-fdd268138a062b45aa126c21ee3d5579f01c3f2e.tar.gz
rails-fdd268138a062b45aa126c21ee3d5579f01c3f2e.tar.bz2
rails-fdd268138a062b45aa126c21ee3d5579f01c3f2e.zip
Made eager loading work with inheritance hierarchies #1065 [Ryan Carver]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1131 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/comments.yml')
-rw-r--r--activerecord/test/fixtures/comments.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/activerecord/test/fixtures/comments.yml b/activerecord/test/fixtures/comments.yml
index f970806b0b..9c442cf794 100644
--- a/activerecord/test/fixtures/comments.yml
+++ b/activerecord/test/fixtures/comments.yml
@@ -2,13 +2,16 @@ greetings:
id: 1
post_id: 1
body: Thank you for the welcome
+ type: Comment
more_greetings:
id: 2
post_id: 1
body: Thank you again for the welcome
-
+ type: Comment
+
does_it_hurt:
id: 3
post_id: 2
- body: Don't think too hard \ No newline at end of file
+ body: Don't think too hard
+ type: SpecialComment \ No newline at end of file