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