aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-02-09 19:37:05 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-02-09 19:37:05 +0000
commitb3065a51a927ded6b22835837598e92df606eaed (patch)
tree5436f083affe38e328447bd2187cf7020524b920 /activerecord/test/fixtures
parentc326851e4db8a41d76cf05a8db71bc853fa08821 (diff)
downloadrails-b3065a51a927ded6b22835837598e92df606eaed.tar.gz
rails-b3065a51a927ded6b22835837598e92df606eaed.tar.bz2
rails-b3065a51a927ded6b22835837598e92df606eaed.zip
Polymorphic join support for has_one associations (has_one :foo, :as => :bar). Closes #3785.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3558 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r--activerecord/test/fixtures/post.rb2
-rw-r--r--activerecord/test/fixtures/tag.rb1
2 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/post.rb b/activerecord/test/fixtures/post.rb
index ada18af115..4c2ccb3f43 100644
--- a/activerecord/test/fixtures/post.rb
+++ b/activerecord/test/fixtures/post.rb
@@ -23,6 +23,8 @@ class Post < ActiveRecord::Base
has_many :taggings, :as => :taggable
has_many :tags, :through => :taggings
+ has_one :tagging, :as => :taggable
+
has_many :categorizations, :foreign_key => :category_id
has_many :authors, :through => :categorizations
diff --git a/activerecord/test/fixtures/tag.rb b/activerecord/test/fixtures/tag.rb
index d54f3cd680..78b6f6666c 100644
--- a/activerecord/test/fixtures/tag.rb
+++ b/activerecord/test/fixtures/tag.rb
@@ -1,3 +1,4 @@
class Tag < ActiveRecord::Base
has_many :taggings, :as => :taggable
+ has_one :tagging, :as => :taggable
end \ No newline at end of file