Skip to content

Commit

Permalink
Fixed #489 -- Changed MySQL backend to use longtext for XMLField
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@694 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Sep 26, 2005
1 parent 9b68dbf commit a978dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/db/backends/mysql.py
Expand Up @@ -133,7 +133,7 @@ def get_relations(cursor, table_name):
'TimeField': 'time',
'URLField': 'varchar(200)',
'USStateField': 'varchar(2)',
'XMLField': 'text',
'XMLField': 'longtext',
}

DATA_TYPES_REVERSE = {
Expand Down

0 comments on commit a978dbe

Please sign in to comment.