diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-01-19 05:30:42 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-01-19 05:30:42 +0000 |
commit | 16b129a68ca1770815107a3edb54090282349ba7 (patch) | |
tree | fedc506d08a766066a829ae8efa3d691cc719aff /activerecord/test/fixtures | |
parent | f95ff8d4dc37ced3b4493ad628e3ff7e5d950efd (diff) | |
download | rails-16b129a68ca1770815107a3edb54090282349ba7.tar.gz rails-16b129a68ca1770815107a3edb54090282349ba7.tar.bz2 rails-16b129a68ca1770815107a3edb54090282349ba7.zip |
belongs_to supports :dependent => :destroy and :delete. Closes #10592.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8675 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r-- | activerecord/test/fixtures/authors.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/authors.yml b/activerecord/test/fixtures/authors.yml index f59b84fa45..de2ec7d38b 100644 --- a/activerecord/test/fixtures/authors.yml +++ b/activerecord/test/fixtures/authors.yml @@ -1,6 +1,8 @@ david: id: 1 name: David + author_address_id: 1 + author_address_extra_id: 2 mary: id: 2 |