1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #30123 -- Removed tuple support in DatabaseIntrospection.get_field_type().

Support for returning tuples was undocumented and error prone.
This commit is contained in:
Nick Pope
2019-01-19 13:35:51 +00:00
committed by Tim Graham
parent 8d01edfa65
commit 0ef9979669
3 changed files with 9 additions and 19 deletions

View File

@@ -211,6 +211,8 @@ backends.
* The second argument of ``DatabaseIntrospection.get_geometry_type()`` is now
the row description instead of the column name.
* ``DatabaseIntrospection.get_field_type()`` may no longer return tuples.
Miscellaneous
-------------