From db70944e655222877739641e7749997f748dd083 Mon Sep 17 00:00:00 2001 From: Boulder Sprinters Date: Sat, 4 Nov 2006 21:19:06 +0000 Subject: [PATCH] [boulder-oracle-sprint] Added max name length of 64 to MySQL git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@3986 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/mysql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index 93a1f32344..c39b9ffca8 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -181,7 +181,7 @@ def get_pk_default_value(): return "DEFAULT" def get_max_name_length(): - return None + return 64 OPERATOR_MAPPING = { 'exact': '= %s',