From 1c50d6ae2bee31ccf605066186d4d48aaf2de7ea Mon Sep 17 00:00:00 2001 From: Anubhav Joshi Date: Fri, 20 Jun 2014 10:30:04 +0530 Subject: Fixed problem introduced with #refs 13711. --- django/db/backends/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'django/db/backends/__init__.py') diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 8acfde014c..a7252cf57d 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -520,6 +520,10 @@ class BaseDatabaseFeatures(object): # at the end of each save operation? supports_forward_references = True + # Does the backend uses proper method like 'truncate_name' + # to auto-truncate column names? + truncates_name = False + # Is there a REAL datatype in addition to floats/doubles? has_real_datatype = False supports_subqueries_in_group_by = True -- cgit v1.3