diff options
author | Roberto Miranda <rjmaltamar@gmail.com> | 2014-11-20 15:59:01 -0500 |
---|---|---|
committer | Roberto Miranda <rjmaltamar@gmail.com> | 2014-11-20 15:59:01 -0500 |
commit | 900f633acae7136fb80105c13e9cce1be93627d9 (patch) | |
tree | a713dffe0279a7e4abd46cedaff6e13019baa20f /guides/source | |
parent | b0f44c9ff0be84ebc42760029adeeb9dd954655f (diff) | |
download | rails-900f633acae7136fb80105c13e9cce1be93627d9.tar.gz rails-900f633acae7136fb80105c13e9cce1be93627d9.tar.bz2 rails-900f633acae7136fb80105c13e9cce1be93627d9.zip |
_will_change! method is not needed any more [ci skip]
ref #15674
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_postgresql.md | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md index 6c94218ef6..36345e3137 100644 --- a/guides/source/active_record_postgresql.md +++ b/guides/source/active_record_postgresql.md @@ -103,11 +103,6 @@ profile.settings # => {"color"=>"blue", "resolution"=>"800x600"} profile.settings = {"color" => "yellow", "resolution" => "1280x1024"} profile.save! - -## you need to call _will_change! if you are editing the store in place -profile.settings["color"] = "green" -profile.settings_will_change! -profile.save! ``` ### JSON |