From afeda3d7bde115eb4df93c9b05006ab9b023a22e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 28 Mar 2006 17:47:53 +0000 Subject: [PATCH] magic-removal: Merged to [2582] git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2583 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/mysql/creation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/mysql/creation.py b/django/db/backends/mysql/creation.py index f03758e3b2..116b490124 100644 --- a/django/db/backends/mysql/creation.py +++ b/django/db/backends/mysql/creation.py @@ -3,7 +3,7 @@ # be interpolated against the values of Field.__dict__ before being output. # If a column type is set to None, it won't be included in the output. DATA_TYPES = { - 'AutoField': 'mediumint(9) unsigned auto_increment', + 'AutoField': 'integer AUTO_INCREMENT', 'BooleanField': 'bool', 'CharField': 'varchar(%(maxlength)s)', 'CommaSeparatedIntegerField': 'varchar(%(maxlength)s)',