aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-07-26 16:01:51 +1200
committerPhilip Arndt <parndt@gmail.com>2012-07-26 16:01:51 +1200
commitffe8b0a36ab4fb4ced6f071e3030948ddaa69f4e (patch)
treef5a89cb2e6c185024740bb11f98f5c703c8bdcd5
parent0dc356e733d5a06b2d6d7cfe643dfe7f3f3e02fd (diff)
downloadrails-ffe8b0a36ab4fb4ced6f071e3030948ddaa69f4e.tar.gz
rails-ffe8b0a36ab4fb4ced6f071e3030948ddaa69f4e.tar.bz2
rails-ffe8b0a36ab4fb4ced6f071e3030948ddaa69f4e.zip
Switched update_column recommendation in changelog to update_columns
Related to #7164 Looks like the last one; thanks!
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index bdd9edf27b..bc355f1ee7 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -184,7 +184,7 @@
* Add uuid datatype support to PostgreSQL adapter. *Konstantin Shabanov*
-* `update_attribute` has been removed. Use `update_column` if
+* `update_attribute` has been removed. Use `update_columns` if
you want to bypass mass-assignment protection, validations, callbacks,
and touching of updated_at. Otherwise please use `update_attributes`.