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?

link|improve this question
do you have attr_accessible in your User model? – PeterWong Feb 6 at 3:42
Thanks a lot, dude. attr_accessible: Specifies a white list of model attributes that can be set via mass-assignment, such as new(attributes), update_attributes(attributes), or attributes=(attributes) – aquajach Feb 6 at 4:26
So that fixes your problem :) ? – PeterWong Feb 6 at 4:33
Yep, it has nothing to do with the time format. Appreciated! – aquajach Feb 6 at 4:37
Then I make it a clearer answer so the latecomer would know :) – PeterWong Feb 6 at 4:40
feedback

1 Answer

It is due to the attr_accessible being set in the User model.

What update_attribtue do is in fact very similar to calling last_signed_in_at=. see the source in http://apidock.com/rails/ActiveRecord/Persistence/update_attribute

One of the main differences between update_attributes and update_attribute is that update_attributes is to do mass-assignment while update_attribute is not.

That's why it is quite obvious that it is the attr_accessible problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.