diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-10-16 10:59:27 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-10-16 10:59:27 +0200 |
commit | f0f1025e8b5c691d9fd9fc8dacabbc61272d0d13 (patch) | |
tree | f6917e10c06e135154c7847b49bf464090261b32 /activerecord/lib/active_record/attribute_methods | |
parent | 400b0818fac1fed0edf08a4f7209542a841f8588 (diff) | |
download | rails-f0f1025e8b5c691d9fd9fc8dacabbc61272d0d13.tar.gz rails-f0f1025e8b5c691d9fd9fc8dacabbc61272d0d13.tar.bz2 rails-f0f1025e8b5c691d9fd9fc8dacabbc61272d0d13.zip |
docs, since #16702 we detect mutation on serialized attributes. [ci skip]
/cc @sgrif
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/serialization.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/serialization.rb b/activerecord/lib/active_record/attribute_methods/serialization.rb index 100d6d4229..04a1df37c6 100644 --- a/activerecord/lib/active_record/attribute_methods/serialization.rb +++ b/activerecord/lib/active_record/attribute_methods/serialization.rb @@ -11,9 +11,6 @@ module ActiveRecord # serialized object must be of that class on retrieval or # <tt>SerializationTypeMismatch</tt> will be raised. # - # A notable side effect of serialized attributes is that the model will - # be updated on every save, even if it is not dirty. - # # ==== Parameters # # * +attr_name+ - The field name that should be serialized. |