aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2013-04-19 16:57:06 +0100
committerJon Leighton <j@jonathanleighton.com>2013-04-19 16:57:06 +0100
commit0920d4fccbfc41b6ccdae7070758fc2133280409 (patch)
tree8a73c28095e79591faff33a05f7c89394c65ad1c /activerecord/CHANGELOG.md
parente8727d37fc49d5bf9976c3cb5c46badb92cf4ced (diff)
downloadrails-0920d4fccbfc41b6ccdae7070758fc2133280409.tar.gz
rails-0920d4fccbfc41b6ccdae7070758fc2133280409.tar.bz2
rails-0920d4fccbfc41b6ccdae7070758fc2133280409.zip
Revert "Merge pull request #10183 from jholton/fix_association_auto_save"
This reverts commit e8727d37fc49d5bf9976c3cb5c46badb92cf4ced, reversing changes made to d098e1c24bc145e0cc14532348436e14dc46d375. Reason: it broke the mysql build
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 0 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 9e5a9a15c3..278da322f2 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,12 +1,5 @@
## Rails 4.0.0 (unreleased) ##
-* fixes bug introduced by #3329. Now, when autosaving associations,
- deletions happen before inserts and saves. This prevents a 'duplicate
- unique value' database error that would occur if a record being created had
- the same value on a unique indexed field as that of a record being destroyed.
-
- *Johnny Holton*
-
* Run `rake migrate:down` & `rake migrate:up` in transaction if database supports.
*Alexander Bondarev*