Skip to content

Commit

Permalink
Fixed #489 -- Changed MySQL backend to use longtext instead of text f…
Browse files Browse the repository at this point in the history
…or TextField

git-svn-id: http://code.djangoproject.com/svn/django/trunk@680 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Sep 24, 2005
1 parent eb3b1cf commit 109a915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/db/backends/mysql.py
Expand Up @@ -129,7 +129,7 @@ def get_relations(cursor, table_name):
'PositiveSmallIntegerField': 'smallint UNSIGNED', 'PositiveSmallIntegerField': 'smallint UNSIGNED',
'SlugField': 'varchar(50)', 'SlugField': 'varchar(50)',
'SmallIntegerField': 'smallint', 'SmallIntegerField': 'smallint',
'TextField': 'text', 'TextField': 'longtext',
'TimeField': 'time', 'TimeField': 'time',
'URLField': 'varchar(200)', 'URLField': 'varchar(200)',
'USStateField': 'varchar(2)', 'USStateField': 'varchar(2)',
Expand Down

0 comments on commit 109a915

Please sign in to comment.