diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-26 01:18:37 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-26 01:18:37 -0300 |
commit | e6e5898b5abeeecce2ce4fdf789e91e2234b8526 (patch) | |
tree | f5cc9e1cc1de248f1693c46ce3df603cfdf71c97 | |
parent | cffaca491fcfd84988377e5258b0938e588350bb (diff) | |
download | rails-e6e5898b5abeeecce2ce4fdf789e91e2234b8526.tar.gz rails-e6e5898b5abeeecce2ce4fdf789e91e2234b8526.tar.bz2 rails-e6e5898b5abeeecce2ce4fdf789e91e2234b8526.zip |
Remove CHANGELOG entry for the update_attribute removal.
We reverted the removal because the new deprecation policy
-rw-r--r-- | activerecord/CHANGELOG.md | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 6fb9097809..dc5255542a 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -277,12 +277,6 @@ * Add uuid datatype support to PostgreSQL adapter. *Konstantin Shabanov* -* `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`. - - *Steve Klabnik* - * Added `ActiveRecord::Migration.check_pending!` that raises an error if migrations are pending. *Richard Schneeman* |