aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-30 10:15:26 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-30 10:16:28 -0300
commit2f930df518077bb2a00ab6d6a6cf579f0d88e250 (patch)
tree217db866b94f113b5e4ed4f6eed1eb76b1f2571e /activerecord/CHANGELOG.md
parentcc712f2072e2bfd16db83239dd163eb3a488c45e (diff)
downloadrails-2f930df518077bb2a00ab6d6a6cf579f0d88e250.tar.gz
rails-2f930df518077bb2a00ab6d6a6cf579f0d88e250.tar.bz2
rails-2f930df518077bb2a00ab6d6a6cf579f0d88e250.zip
Revert "Add update_columns and the suggestion of using update_columns
instead of update_column" This reverts commit 9fa06c3d9811113259cb6e00a3a8454b3974add7. This reverts commit 17a64de4980683da3ca3c185205013a29a8cf88d. This reverts commit def9c85ffbdcf63e6c412b6bd4abafaa32ccdb5c, reversing changes made to 6b7d26cf3c061907aedc44f7f36776c9b36950fd. Reason: This was supposed to be released with 3.2.7 before the suggestion to use update_column. Since it was not release now is not good to suggest to use another method because it will confusing the people.
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 bdadb73ab8..129b3109d6 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -17,7 +17,7 @@
*Steve Klabnik*
-* `update_attribute` has been deprecated. Use `update_columns` if
+* `update_attribute` has been deprecated. Use `update_column` if
you want to bypass mass-assignment protection, validations, callbacks,
and touching of updated_at. Otherwise please use `update_attributes`.