diff --git a/django/db/backends/oracle/introspection.py b/django/db/backends/oracle/introspection.py index 43f61faf0a..7666f09466 100644 --- a/django/db/backends/oracle/introspection.py +++ b/django/db/backends/oracle/introspection.py @@ -36,6 +36,8 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): if data_type == cx_Oracle.NUMBER and description[5] == 0: if description[4] > 11: return 'BigIntegerField' + elif description[4]==1: + return 'BooleanField' else: return 'IntegerField' else: