From 7d8fc65f369c4146bb2b5a42461c5649f254678e Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 4 Jul 2017 14:46:40 +0200 Subject: [PATCH] Removed obsolete comment about IntegerField introspection on Oracle. Obsolete since e9d12bae1e59e51738c11c492c620f56f96106bf. --- django/db/backends/oracle/introspection.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/db/backends/oracle/introspection.py b/django/db/backends/oracle/introspection.py index 760bdae693..1634aa9613 100644 --- a/django/db/backends/oracle/introspection.py +++ b/django/db/backends/oracle/introspection.py @@ -30,7 +30,6 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): cache_bust_counter = 1 def get_field_type(self, data_type, description): - # If it's a NUMBER with scale == 0, consider it an IntegerField if data_type == cx_Oracle.NUMBER: precision, scale = description[4:6] if scale == 0: