summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
diff options
context:
space:
mode:
authorAnubhav Joshi <anubhav9042@gmail.com>2014-06-10 17:34:19 +0530
committerTim Graham <timograham@gmail.com>2014-06-17 16:16:02 -0400
commit91f1b6dcdc5da47d7794a55e3114820407a5bd62 (patch)
treef27e7176a448035362fdc95caa1e32013ef84ba1 /django/db/backends/__init__.py
parente4708385fde278fbbff5428f756632455c2bcaf5 (diff)
Fixed #13711 -- Model check added to ensure that auto-generated column name is within limits of the database.
Thanks russellm for report and Tim Graham for review.
Diffstat (limited to 'django/db/backends/__init__.py')
-rw-r--r--django/db/backends/__init__.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py
index 869644bfac..8acfde014c 100644
--- a/django/db/backends/__init__.py
+++ b/django/db/backends/__init__.py
@@ -520,9 +520,6 @@ class BaseDatabaseFeatures(object):
# at the end of each save operation?
supports_forward_references = True
- # Does the backend allow very long model names without error?
- supports_long_model_names = True
-
# Is there a REAL datatype in addition to floats/doubles?
has_real_datatype = False
supports_subqueries_in_group_by = True