Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #7536 -- Added NEWDECIMAL to introspection types in the mysql b…
…ackend. Thanks Jerome Etienne for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8475 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
brosner committed Aug 23, 2008
1 parent 77c7820 commit 264771f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions django/db/backends/mysql/introspection.py
Expand Up @@ -10,6 +10,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection):
FIELD_TYPE.BLOB: 'TextField',
FIELD_TYPE.CHAR: 'CharField',
FIELD_TYPE.DECIMAL: 'DecimalField',
FIELD_TYPE.NEWDECIMAL: 'DecimalField',
FIELD_TYPE.DATE: 'DateField',
FIELD_TYPE.DATETIME: 'DateTimeField',
FIELD_TYPE.DOUBLE: 'FloatField',
Expand Down

0 comments on commit 264771f

Please sign in to comment.