diff options
author | Philip Arndt <parndt@gmail.com> | 2012-07-26 16:01:51 +1200 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2012-07-26 16:01:51 +1200 |
commit | ffe8b0a36ab4fb4ced6f071e3030948ddaa69f4e (patch) | |
tree | f5a89cb2e6c185024740bb11f98f5c703c8bdcd5 /activerecord | |
parent | 0dc356e733d5a06b2d6d7cfe643dfe7f3f3e02fd (diff) | |
download | rails-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!
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 2 |
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`. |