aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/tag.rb
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/tag.rb
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/tag.rb')
-rw-r--r--activerecord/test/fixtures/tag.rb1
1 files changed, 1 insertions, 0 deletions
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