mirror of
https://github.com/django/django.git
synced 2025-11-03 05:13:23 +00:00
Fixed #32395 -- Allowed capturing stdout of migration signals.
This commit is contained in:
parent
31bebc558b
commit
f23b05696e
6 changed files with 34 additions and 9 deletions
|
|
@ -424,6 +424,11 @@ Arguments sent with this signal:
|
|||
For example, the :mod:`django.contrib.auth` app only prompts to create a
|
||||
superuser when ``interactive`` is ``True``.
|
||||
|
||||
``stdout``
|
||||
.. versionadded:: 4.0
|
||||
|
||||
A stream-like object where verbose output should be redirected.
|
||||
|
||||
``using``
|
||||
The alias of database on which a command will operate.
|
||||
|
||||
|
|
@ -478,6 +483,11 @@ Arguments sent with this signal:
|
|||
For example, the :mod:`django.contrib.auth` app only prompts to create a
|
||||
superuser when ``interactive`` is ``True``.
|
||||
|
||||
``stdout``
|
||||
.. versionadded:: 4.0
|
||||
|
||||
A stream-like object where verbose output should be redirected.
|
||||
|
||||
``using``
|
||||
The database alias used for synchronization. Defaults to the ``default``
|
||||
database.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue