Fixed name of database connection feature

This commit is contained in:
Shai Berger 2014-07-14 19:23:57 +03:00
parent f7a78f9bba
commit dd9b3312d0
4 changed files with 5 additions and 6 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 or connection.features.truncates_name:
if max_name_length is None or connection.features.truncates_names:
continue
else:
if allowed_len is None: