mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #27822 -- Replaced deprecated cx_Oracle types in DatabaseIntrospection.data_types_reverse.
This commit is contained in:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							545a88fc16
						
					
				
				
					commit
					1b96dbdad0
				
			| @@ -16,22 +16,15 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): | ||||
|         cx_Oracle.CLOB: 'TextField', | ||||
|         cx_Oracle.DATETIME: 'DateField', | ||||
|         cx_Oracle.FIXED_CHAR: 'CharField', | ||||
|         cx_Oracle.FIXED_NCHAR: 'CharField', | ||||
|         cx_Oracle.NATIVE_FLOAT: 'FloatField', | ||||
|         cx_Oracle.NCHAR: 'CharField', | ||||
|         cx_Oracle.NCLOB: 'TextField', | ||||
|         cx_Oracle.NUMBER: 'DecimalField', | ||||
|         cx_Oracle.STRING: 'CharField', | ||||
|         cx_Oracle.TIMESTAMP: 'DateTimeField', | ||||
|     } | ||||
|  | ||||
|     try: | ||||
|         data_types_reverse[cx_Oracle.NATIVE_FLOAT] = 'FloatField' | ||||
|     except AttributeError: | ||||
|         pass | ||||
|  | ||||
|     try: | ||||
|         data_types_reverse[cx_Oracle.UNICODE] = 'CharField' | ||||
|     except AttributeError: | ||||
|         pass | ||||
|  | ||||
|     cache_bust_counter = 1 | ||||
|  | ||||
|     def get_field_type(self, data_type, description): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user