Today I submitted a package to PyPi called django-datetime-utc
. You
can install it via Pip:
$ pip install django-datetime-utc
This package provides DateTimeUTCField
, a naive datetime model field. In
PostgreSQL this translates to the field timestamp without time zone. All
timestamps are saved in UTC.
I created this because ...