diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-06 21:10:59 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-06-06 21:10:59 +0000 |
commit | 2bdaff4a4e9a3813b4e4e24ff3d3b0aa53b088fc (patch) | |
tree | ee3ae5d9b837bc74112e1e699aa1e73f3dd95804 /activerecord/CHANGELOG | |
parent | 5c2e0fe6491761ba2c55b780663d7f9ec86a62cc (diff) | |
download | rails-2bdaff4a4e9a3813b4e4e24ff3d3b0aa53b088fc.tar.gz rails-2bdaff4a4e9a3813b4e4e24ff3d3b0aa53b088fc.tar.bz2 rails-2bdaff4a4e9a3813b4e4e24ff3d3b0aa53b088fc.zip |
Added a second parameter to the build and create method for has_one that controls whether the existing association should be replaced (which means nullifying its foreign key as well). By default this is true, but false can be passed to prevent it.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1392 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 7a6f18986e..98773a282f 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added a second parameter to the build and create method for has_one that controls whether the existing association should be replaced (which means nullifying its foreign key as well). By default this is true, but false can be passed to prevent it. + * Using transactional fixtures now causes the data to be loaded only once. * Added fixture accessor methods that can be used when instantiated fixtures are disabled. |