In Rails 3.1.3 with Postgresql, if you create an attribute as datetime, its class with ActiveSupport::TimeWithZone. However, anyone who can explain this:
user=User.first
user.update_attributes(:last_signed_in_at => Time.now) #True, but record isn't updated
user.update_attribute(:last_signed_in_at, Time.now) #True, and record is updated
user.last_signed_in_at = Time.now
user.save #True, and the record is updated
update_attributes is different from update_attribute that it checks validations. The only reason it fails might be:
user.last_signed_in_at = ActiveSupport::TimeWithZone
Time.now.class = Time
Anyone who's able to sort it out?
attr_accessiblein your User model? – PeterWong Feb 6 at 3:42