From 398a9f42097ce2cbfc05de04d50c1ca18b68d542 Mon Sep 17 00:00:00 2001 From: Farhaan Bukhsh Date: Thu, 31 Oct 2019 09:27:31 +0530 Subject: [PATCH] [2.2.x] Fixed #30865 -- Doc'd that not all DATABASES['OPTIONS'] are passed to command-line client. Backport of cc5622ec8c260535c63279cf6eb293f2b5a742f0 from master --- docs/ref/django-admin.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index f2029e9b19..81672b46f4 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -211,6 +211,12 @@ program manually. Specifies the database onto which to open a shell. Defaults to ``default``. +.. note:: + + Be aware that not all options set it in the :setting:`OPTIONS` part of your + database configuration in :setting:`DATABASES` are passed to the + command-line client, e.g. ``'isolation_level'``. + ``diffsettings`` ----------------