summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
diff options
context:
space:
mode:
authorShai Berger <shai@platonix.com>2014-07-14 19:23:57 +0300
committerShai Berger <shai@platonix.com>2014-07-14 19:23:57 +0300
commitdd9b3312d0a931daf21c10279cef204f04648ef9 (patch)
tree2f1117fa0b10e61de850aef241bb518c33063df5 /django/db/backends/__init__.py
parentf7a78f9bba4efd0231aec0326a73fdbd004d1faa (diff)
Fixed name of database connection feature
Diffstat (limited to 'django/db/backends/__init__.py')
-rw-r--r--django/db/backends/__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py
index a7252cf57d..d3651cda21 100644
--- a/django/db/backends/__init__.py
+++ b/django/db/backends/__init__.py
@@ -520,9 +520,8 @@ 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
+ # Does the backend truncate names properly when they are too long?
+ truncates_names = False
# Is there a REAL datatype in addition to floats/doubles?
has_real_datatype = False