diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt
index dbb5b61..7c7519b 100644
a
|
b
|
but initial SQL is also quite a bit more flexible.
|
13 | 13 | .. _initial data as sql: `providing initial sql data`_ |
14 | 14 | .. _initial data via fixtures: `providing initial data with fixtures`_ |
15 | 15 | |
| 16 | .. _initial-data-via-fixtures: |
| 17 | |
16 | 18 | Providing initial data with fixtures |
17 | 19 | ==================================== |
18 | 20 | |
… |
… |
be loaded every time you run :djadmin:`syncdb`. This is extremely convenient,
|
80 | 82 | but be careful: remember that the data will be refreshed *every time* you run |
81 | 83 | :djadmin:`syncdb`. So don't use ``initial_data`` for data you'll want to edit. |
82 | 84 | |
| 85 | Where Django finds fixture files |
| 86 | -------------------------------- |
| 87 | |
| 88 | By default, Django looks in the ``fixtures`` directory inside each app for |
| 89 | fixtures. You can set the :setting:`FIXTURE_DIRS` setting to a list of |
| 90 | additional directories where Django should look. |
| 91 | |
| 92 | When running :djadmin:`manage.py loaddata <loaddata>`, you can also |
| 93 | specify an absolute path to a fixture file, which overrides searching |
| 94 | the usual directories. |
| 95 | |
83 | 96 | .. seealso:: |
84 | 97 | |
85 | 98 | Fixtures are also used by the :ref:`testing framework |
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 20366e3..3b9ea17 100644
a
|
b
|
FIXTURE_DIRS
|
1072 | 1072 | |
1073 | 1073 | Default: ``()`` (Empty tuple) |
1074 | 1074 | |
1075 | | List of locations of the fixture data files, in search order. Note that |
1076 | | these paths should use Unix-style forward slashes, even on Windows. See |
1077 | | :doc:`/topics/testing`. |
| 1075 | Django looks for the fixture data files in the ``fixtures`` directory of each |
| 1076 | app by default, but you can set list of additional locations (in search order) |
| 1077 | with this setting. |
| 1078 | |
| 1079 | Note that these paths should use Unix-style forward slashes, even on Windows. |
| 1080 | See :doc:`/topics/testing` and :ref:`initial-data-via-fixtures`. |
1078 | 1081 | |
1079 | 1082 | FORCE_SCRIPT_NAME |
1080 | 1083 | ------------------ |