1
0
mirror of https://github.com/django/django.git synced 2025-07-05 02:09:13 +00:00

[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
This commit is contained in:
Boulder Sprinters 2006-11-04 21:19:06 +00:00
parent 2141ee605f
commit db70944e65

View File

@ -181,7 +181,7 @@ def get_pk_default_value():
return "DEFAULT"
def get_max_name_length():
return None
return 64
OPERATOR_MAPPING = {
'exact': '= %s',