I've changed all my code to use aware-time
by using django.utils.timezone.now()
I changed datetimefield to use default=timezone.now
, and set USE_TZ=True
in settings.py
After the changes, I ran south schemamigration command and it doesn't pick up the database fields change.
I'm using the south 0.7.6 and postgresql if that matters.
Here's the detailed change I made to make my entire site timezone aware.
how do I make my site timezone aware?