hello, i am using Djano 1.3 rev.15387 and i made a field 'last_updated=models.DateTimeField(auto_now=True)' when i wanted to get the data out of the database i wanted to get a delta with datetime module of python but i was warned that my datetime.datetime.now() object was not timezone aware.so i though about turning off timezone in postgres too.with pgadmin i was able to turn it off and my results was ok.but i don't know if i can do similar at the time of model creation in django model.is that possible? [sth like last_updated=models.DateTimeField(timestamp_timezoneaware=False)]
-- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.