diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt
index d003db6..2cc6a05 100644
a
|
b
|
again, you'll wipe out any changes you've made.
|
77 | 77 | Automatically loading initial data fixtures |
78 | 78 | ------------------------------------------- |
79 | 79 | |
| 80 | .. deprecated:: 1.7 |
| 81 | |
| 82 | If an application uses migrations, there is no automatic loading of |
| 83 | fixtures. Since migrations will be required for applications in Django 1.9, |
| 84 | this behavior is considered deprecated. If you want to load initial data |
| 85 | for an app, we suggest you do it in a migration. |
| 86 | |
80 | 87 | If you create a fixture named ``initial_data.[xml/yaml/json]``, that fixture will |
81 | 88 | be loaded every time you run :djadmin:`migrate`. This is extremely convenient, |
82 | 89 | but be careful: remember that the data will be refreshed *every time* you run |