aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-08-01 20:16:59 +0200
committerXavier Noria <fxn@hashref.com>2012-08-01 20:24:24 +0200
commitf203be98645a603e03aa0dbbf2b7eb42cd729cb4 (patch)
treea5db94b472d0207885b53b100710aec1b5f6f8e4 /activerecord/CHANGELOG.md
parent89177ba2000d6f587364d7ed8f8bf7ecd92e17cf (diff)
downloadrails-f203be98645a603e03aa0dbbf2b7eb42cd729cb4.tar.gz
rails-f203be98645a603e03aa0dbbf2b7eb42cd729cb4.tar.bz2
rails-f203be98645a603e03aa0dbbf2b7eb42cd729cb4.zip
revises the deprecation warning of update_attribute
We have decided not to drop this important method in 4.0 and give it a longer deprecation cycle. On the other hand we do not expect to have update_column around for a long time, it is going to be replaced in favor of update_columns.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index f4a573bb72..aa2b9685d0 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -11,7 +11,7 @@
*Rafael Mendonça França*
-* Change update_attribute deprecation warning suggesting to use update_columns instead of update_column. *Philip Arndt*
+* Change the deprecation warning of `update_attribute` suggesting to use `update_attributes` or `update_columns` instead of `update_column`. *Philip Arndt & Xavier Noria*
* update_columns added. *Sebastián Martínez*