diff options
author | Sergey Nartimov <just.lest@gmail.com> | 2012-03-27 22:55:50 +0300 |
---|---|---|
committer | Sergey Nartimov <just.lest@gmail.com> | 2012-03-27 22:55:50 +0300 |
commit | fdcfc7521f0490aed74f372b90ef5e982b0f7e7a (patch) | |
tree | 0bb8ddd60a673e0c2da67eeaa3f0a76d0f38c8e8 /activerecord/lib/active_record/attribute_methods | |
parent | bd8a9701c27b4261e9d8dd84aebbde6ba784ed83 (diff) | |
download | rails-fdcfc7521f0490aed74f372b90ef5e982b0f7e7a.tar.gz rails-fdcfc7521f0490aed74f372b90ef5e982b0f7e7a.tar.bz2 rails-fdcfc7521f0490aed74f372b90ef5e982b0f7e7a.zip |
force datetime attributes to be changed
backport ddb5d2f756d9d2655a07791a3b62832efd588474 to 3-2-stable
Diffstat (limited to 'activerecord/lib/active_record/attribute_methods')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb index 17cf34cdf6..c9b2edbd8c 100644 --- a/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb +++ b/activerecord/lib/active_record/attribute_methods/time_zone_conversion.rb @@ -43,6 +43,7 @@ module ActiveRecord end time = time.in_time_zone rescue nil if time write_attribute(:#{attr_name}, original_time) + #{attr_name}_will_change! @attributes_cache["#{attr_name}"] = time end EOV |