Fixed problem introduced with #refs 13711.

This commit is contained in:
Anubhav Joshi 2014-06-20 10:30:04 +05:30 committed by Shai Berger
parent 908160f692
commit 1c50d6ae2b
4 changed files with 7 additions and 2 deletions

View file

@ -18,7 +18,7 @@ def get_max_column_name_length():
for db in settings.DATABASES.keys():
connection = connections[db]
max_name_length = connection.ops.max_name_length()
if max_name_length is None:
if max_name_length is None or connection.features.truncates_name:
continue
else:
if allowed_len is None: