From c494c6974dd0e7c5a43ea3e220b34641abc3ba29 Mon Sep 17 00:00:00 2001 From: Lily Foote Date: Wed, 10 May 2023 08:26:25 +0200 Subject: Removed obsolete docstring from Field.db_returning. It's also supported on SQLite 3.35+ and MariaDB 10.5+. --- django/db/models/fields/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'django') diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index 7ea2fd59aa..4416898d80 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -875,10 +875,7 @@ class Field(RegisterLookupMixin): @property def db_returning(self): - """ - Private API intended only to be used by Django itself. Currently only - the PostgreSQL backend supports returning multiple fields on a model. - """ + """Private API intended only to be used by Django itself.""" return False def set_attributes_from_name(self, name): -- cgit v1.2.1