Fixed #1830 -- MySQL inspectdb now detects tinyint field properly

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-05-16 20:41:37 +00:00
parent 47d18514b0
commit aa6b13c96b
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ DATA_TYPES_REVERSE = {
FIELD_TYPE.SHORT: 'IntegerField',
FIELD_TYPE.STRING: 'TextField',
FIELD_TYPE.TIMESTAMP: 'DateTimeField',
FIELD_TYPE.TINY: 'IntegerField',
FIELD_TYPE.TINY_BLOB: 'TextField',
FIELD_TYPE.MEDIUM_BLOB: 'TextField',
FIELD_TYPE.LONG_BLOB: 'TextField',