1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

Fixed reverse type mapping in Oracle introspection.py: cx_Oracle.STRING is a VARCHAR2/CharField, not TextField.

git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@5249 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Boulder Sprinters 2007-05-15 17:09:48 +00:00
parent 151426692e
commit f948bb371e

View File

@ -93,6 +93,6 @@ DATA_TYPES_REVERSE = {
cx_Oracle.FIXED_CHAR: 'CharField',
cx_Oracle.NCLOB: 'TextField',
cx_Oracle.NUMBER: 'FloatField',
cx_Oracle.STRING: 'TextField',
cx_Oracle.STRING: 'CharField',
cx_Oracle.TIMESTAMP: 'DateTimeField',
}