aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-26 03:36:06 -0800
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-02-26 03:36:06 -0800
commit06eb872035a115852d92121c037e3c54a7a10f58 (patch)
treea6b8de1e96448eb6959b166090e6647b12b448a1 /activerecord/CHANGELOG.md
parent0761bb029886bb6920a404ecf409013f83a44f58 (diff)
parent905b7df1fac8332547b9eb7fc4d5b083c6fc1031 (diff)
downloadrails-06eb872035a115852d92121c037e3c54a7a10f58.tar.gz
rails-06eb872035a115852d92121c037e3c54a7a10f58.tar.bz2
rails-06eb872035a115852d92121c037e3c54a7a10f58.zip
Merge pull request #9430 from authorNari/backport-7072-to-3-2-stable
Backported #7072 to 3-2-stable. Use database value for uniqueness validation scope
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index db4820b3d2..738eddb406 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,4 +1,10 @@
## unreleased ##
+* Fixes issue with overrding ActiveRecord reader methods with a
+ composed object and using that attribute as the scope of a
+ validates_uniqueness_of validation.
+ Backport of #7072
+
+ *Peter Brown*
* Sqlite now preserves custom primary keys when copying or altering tables.
Fixes #9367.