diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index 7bdb188..4ed7987 100644
a
|
b
|
pre_migrate
|
376 | 376 | Sent by the :djadmin:`migrate` command before it starts to install an |
377 | 377 | application. It's not emitted for applications that lack a ``models`` module. |
378 | 378 | |
379 | | Any handlers that listen to this signal need to be written in a particular |
380 | | place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If |
381 | | handlers are registered anywhere else they may not be loaded by |
382 | | :djadmin:`migrate`. |
| 379 | Any handlers that listen to this signal need to be registered in a particular |
| 380 | place: the :meth:`AppConfig.ready() <django.apps.AppConfig.ready>` method within |
| 381 | the ``apps`` module in one of your :setting:`INSTALLED_APPS`. If handlers are |
| 382 | registered anywhere else they may not be loaded by :djadmin:`migrate`. |
383 | 383 | |
384 | 384 | Arguments sent with this signal: |
385 | 385 | |
… |
… |
pre_syncdb
|
421 | 421 | Sent by the :djadmin:`syncdb` command before it starts to install an |
422 | 422 | application. |
423 | 423 | |
424 | | Any handlers that listen to this signal need to be written in a particular |
425 | | place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If |
426 | | handlers are registered anywhere else they may not be loaded by |
427 | | :djadmin:`syncdb`. |
| 424 | Any handlers that listen to this signal need to be registered in a particular |
| 425 | place: the :meth:`AppConfig.ready() <django.apps.AppConfig.ready>` method within |
| 426 | the ``apps`` module in one of your :setting:`INSTALLED_APPS`. If handlers are |
| 427 | registered anywhere else they may not be loaded by :djadmin:`syncdb`. |
428 | 428 | |
429 | 429 | Arguments sent with this signal: |
430 | 430 | |
… |
… |
Sent by the :djadmin:`migrate` command after it installs an application, and the
|
469 | 469 | :djadmin:`flush` command. It's not emitted for applications that lack a |
470 | 470 | ``models`` module. |
471 | 471 | |
472 | | Any handlers that listen to this signal need to be written in a particular |
473 | | place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If |
474 | | handlers are registered anywhere else they may not be loaded by |
475 | | :djadmin:`migrate`. It is important that handlers of this signal perform |
476 | | idempotent changes (e.g. no database alterations) as this may cause the |
477 | | :djadmin:`flush` management command to fail if it also ran during the |
478 | | :djadmin:`migrate` command. |
| 472 | Any handlers that listen to this signal need to be registered in a particular |
| 473 | place: the :meth:`AppConfig.ready() <django.apps.AppConfig.ready>` method within |
| 474 | the ``apps`` module in one of your :setting:`INSTALLED_APPS`. If handlers are |
| 475 | registered anywhere else they may not be loaded by :djadmin:`migrate`. It is |
| 476 | important that handlers of this signal perform idempotent changes (e.g. no |
| 477 | database alterations) as this may cause the :djadmin:`flush` management command |
| 478 | to fail if it also ran during the :djadmin:`migrate` command. |
479 | 479 | |
480 | 480 | Arguments sent with this signal: |
481 | 481 | |
… |
… |
post_syncdb
|
529 | 529 | Sent by the :djadmin:`syncdb` command after it installs an application, and the |
530 | 530 | :djadmin:`flush` command. |
531 | 531 | |
532 | | Any handlers that listen to this signal need to be written in a particular |
533 | | place: a ``management`` module in one of your :setting:`INSTALLED_APPS`. If |
| 532 | Any handlers that listen to this signal need to be registered in a particular |
| 533 | place: the :meth:`AppConfig.ready() <django.apps.AppConfig.ready>` method within |
| 534 | the ``apps`` module in one of your :setting:`INSTALLED_APPS`. If |
534 | 535 | handlers are registered anywhere else they may not be loaded by |
535 | 536 | :djadmin:`syncdb`. It is important that handlers of this signal perform |
536 | 537 | idempotent changes (e.g. no database alterations) as this may cause the |