aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-03-21 01:07:16 +0000
committerRick Olson <technoweenie@gmail.com>2006-03-21 01:07:16 +0000
commitc8470f8a5b74eefd498397a8effdf37b4dc28674 (patch)
tree70162f5690e6f0a757fb5b7f9d85e1acb818fd0a /activerecord/test/fixtures
parentd15550aeccd5c10d7c734c523116e3da9f4b13e8 (diff)
downloadrails-c8470f8a5b74eefd498397a8effdf37b4dc28674.tar.gz
rails-c8470f8a5b74eefd498397a8effdf37b4dc28674.tar.bz2
rails-c8470f8a5b74eefd498397a8effdf37b4dc28674.zip
add self referential has_many :through example [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4006 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r--activerecord/test/fixtures/author.rb10
-rw-r--r--activerecord/test/fixtures/author_favorites.yml4
-rw-r--r--activerecord/test/fixtures/db_definitions/schema.rb4
3 files changed, 17 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/author.rb b/activerecord/test/fixtures/author.rb
index e510dd1992..df78a7ada8 100644
--- a/activerecord/test/fixtures/author.rb
+++ b/activerecord/test/fixtures/author.rb
@@ -25,9 +25,12 @@ class Author < ActiveRecord::Base
has_many :categorizations
has_many :categories, :through => :categorizations
-
+
has_many :nothings, :through => :kateggorisatons, :class_name => 'Category'
+ has_many :author_favorites
+ has_many :favorite_authors, :through => :author_favorites, :order => 'name'
+
belongs_to :author_address
attr_accessor :post_log
@@ -60,4 +63,9 @@ end
class AuthorAddress < ActiveRecord::Base
has_one :author
+end
+
+class AuthorFavorite < ActiveRecord::Base
+ belongs_to :author
+ belongs_to :favorite_author, :class_name => "Author", :foreign_key => 'favorite_author_id'
end \ No newline at end of file
diff --git a/activerecord/test/fixtures/author_favorites.yml b/activerecord/test/fixtures/author_favorites.yml
new file mode 100644
index 0000000000..e81fdac778
--- /dev/null
+++ b/activerecord/test/fixtures/author_favorites.yml
@@ -0,0 +1,4 @@
+david_mary:
+ id: 1
+ author_id: 1
+ favorite_author_id: 2 \ No newline at end of file
diff --git a/activerecord/test/fixtures/db_definitions/schema.rb b/activerecord/test/fixtures/db_definitions/schema.rb
index 6e8e23a9c4..7d10fbcadf 100644
--- a/activerecord/test/fixtures/db_definitions/schema.rb
+++ b/activerecord/test/fixtures/db_definitions/schema.rb
@@ -25,4 +25,8 @@ ActiveRecord::Schema.define do
t.column :author_address_id, :integer
end
+ create_table :author_favorites, :force => true do |t|
+ t.column :author_id, :integer
+ t.column :favorite_author_id, :integer
+ end
end \ No newline at end of file