Hi, In my project's config/environments.rb I have set config.time_zone='UTC'. Whenever a new recorded is added to my mysql database, the "created_at" and "updated_at" fields are stored as UTC.However, on my console the result of Time.now/DateTime.now is in my local timezone, namely IST.
>> Time.now => Wed Nov 03 14:24:55 +0530 2010 >> u.created_at => Wed, 29 Sep 2010 17:50:12 UTC +00:00 How do I change my Time.now/DateTime.now timezone to UTC? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

