1
0
mirror of https://github.com/django/django.git synced 2025-03-24 16:20:46 +00:00

Removed obsolete docstring from Field.db_returning.

It's also supported on SQLite 3.35+ and MariaDB 10.5+.
This commit is contained in:
Lily Foote 2023-05-10 08:26:25 +02:00 committed by Mariusz Felisiak
parent 92f0017133
commit c494c6974d

View File

@ -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):