diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index 925f8a3..2944798 100644
a
|
b
|
These permissions will be created when you run :djadmin:`manage.py migrate
|
205 | 205 | will be created for all previously-installed models, as well as for any new |
206 | 206 | models being installed at that time. Afterward, it will create default |
207 | 207 | permissions for new models each time you run :djadmin:`manage.py migrate |
208 | | <migrate>`. |
| 208 | <migrate>` (the function that creates permissions is connected to the |
| 209 | :data:`~django.db.models.signals.post_migrate` signal). |
209 | 210 | |
210 | 211 | Assuming you have an application with an |
211 | 212 | :attr:`~django.db.models.Options.app_label` ``foo`` and a model named ``Bar``, |