1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Refs #19738 -- Removed timezone conversion in SQL queries executed outside of the ORM.

Per deprecation timeline.
This commit is contained in:
Tim Graham
2016-12-30 18:04:09 -05:00
parent b2ffbb00a5
commit e707e4c709
4 changed files with 8 additions and 49 deletions

View File

@@ -254,3 +254,8 @@ these features.
required.
* ``django.db.models.fields.add_lazy_relation()`` is removed.
* When time zone support is enabled, database backends that don't support time
zones no longer convert aware datetimes to naive values in UTC anymore when
such values are passed as parameters to SQL queries executed outside of the
ORM, e.g. with ``cursor.execute()``.