summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-08-28 21:30:20 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-08-28 21:32:44 +0200
commit8f033ee04b2422078e1bd4a2a5b554247d0c4752 (patch)
tree12aa6df1fbbcdc16bcb258985143553024f50e22 /docs
parentc32c220881ebca2be7b7bb5bec6ca4b25d1d6454 (diff)
[1.7.x] Documented correct kwargs for post_syncdb/migrate.
d562527a rename the db to using in the wrong signal. Thanks Maik Hoepfel for the report. Backport of 569e0a2 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/signals.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index 30a9e9bcdf..4ac63417db 100644
--- a/docs/ref/signals.txt
+++ b/docs/ref/signals.txt
@@ -449,7 +449,7 @@ Arguments sent with this signal:
For example, the :mod:`django.contrib.auth` app only prompts to create a
superuser when ``interactive`` is ``True``.
-``using``
+``db``
The alias of database on which a command will operate.
post_migrate
@@ -490,7 +490,7 @@ Arguments sent with this signal:
For example, the :mod:`django.contrib.auth` app only prompts to create a
superuser when ``interactive`` is ``True``.
-``db``
+``using``
The database alias used for synchronization. Defaults to the ``default``
database.