Author: bouldersprinters
Date: 2007-05-15 12:09:48 -0500 (Tue, 15 May 2007)
New Revision: 5249
Modified:
django/branches/boulder-oracle-sprint/django/db/backends/oracle/introspection.py
Log:
Fixed reverse type mapping in Oracle introspection.py: cx_Oracle.STRING is a
VARCHAR2/CharField, not TextField.
Modified:
django/branches/boulder-oracle-sprint/django/db/backends/oracle/introspection.py
===================================================================
---
django/branches/boulder-oracle-sprint/django/db/backends/oracle/introspection.py
2007-05-15 16:14:55 UTC (rev 5248)
+++
django/branches/boulder-oracle-sprint/django/db/backends/oracle/introspection.py
2007-05-15 17:09:48 UTC (rev 5249)
@@ -93,6 +93,6 @@
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',
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---