summaryrefslogtreecommitdiff
path: root/django/db/backends/base
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2015-05-02 22:26:27 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2015-05-17 10:23:13 +0200
commitda2c6959c8da20ff9e4ebc5e68e2be44930116cd (patch)
tree100a18ef9d1b664a78c8fa1466b0131be1bba6f7 /django/db/backends/base
parente2a652fac1ce9af51e2dfdfb4e26a1c94cf3189c (diff)
Dropped the needs_datetime_string_cast feature.
It has been superseded by the converter infrastructure.
Diffstat (limited to 'django/db/backends/base')
-rw-r--r--django/db/backends/base/features.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py
index e03a097a04..8c7b31e471 100644
--- a/django/db/backends/base/features.py
+++ b/django/db/backends/base/features.py
@@ -7,9 +7,6 @@ class BaseDatabaseFeatures(object):
gis_enabled = False
allows_group_by_pk = False
allows_group_by_selected_pks = False
- # True if django.db.backends.utils.typecast_timestamp is used on values
- # returned from dates() calls.
- needs_datetime_string_cast = True
empty_fetchmany_value = []
update_can_self_select = True