Topic: updated_at troubles.
I'm having some problems with my create methods in controllers, as each new record I create has the updated_at column set with the same value as created_at, the column is :default => nil so that shouldnt be the problem.
Is the updated_at column supposed to be set for new records also, or am I right in thinking it should remain as nil until update_attributes is called on the record? I'm just wondering if its an error somewhere in my app or if this is working correctly, as I'm wondering how to best display the updated_at time for only updated records in a view.