From 057cf4918bbc3573321f610a12c29676373b8f0c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 10 Apr 2005 17:24:56 +0000 Subject: Added support for has_and_belongs_to_many associations in eager loading #1064 [Dan Peterson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1132 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/post.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'activerecord/test/fixtures/post.rb') diff --git a/activerecord/test/fixtures/post.rb b/activerecord/test/fixtures/post.rb index 3c0ef927dc..ce9abcc693 100644 --- a/activerecord/test/fixtures/post.rb +++ b/activerecord/test/fixtures/post.rb @@ -1,6 +1,8 @@ class Post < ActiveRecord::Base belongs_to :author has_many :comments + has_and_belongs_to_many :categories end -class SpecialPost < Post; end \ No newline at end of file +class SpecialPost < Post +end \ No newline at end of file -- cgit v1.2.3