Django's documentation mentions that all data should be converted to UTC when switching to USE_TZ=True. See: https://docs.djangoproject.com/en/dev/topics/i18n/timezones/#other-databases
This is a rather concise remark. Are there any scripts/tricks available to do this in "one go", and to be able to easily do the same conversion in development and production.
I'd imagine this is not something one should do in South, since the USE_TZ setting is done at the project level whereas South migrations are bound to apps. Also, I'm not sure what view South would get from the data. Presumably South is reusing Django's ORM, so trying to do anything through that layer would lead to confusing results, and would also depend on whether the setting USE_TZ has already been changed to True. In fact, this could be said for any manipulation of the DB that routes through the ORM. Correct?
Many thanks,
Klaas