Ticket #10138: patch-10138.diff

File patch-10138.diff, 725 bytes (added by John Shimek, 16 years ago)

docs patch

  • docs/ref/django-admin.txt

     
    333333application,  ``<dirname>/foo/bar/mydata.json`` for each directory in
    334334``FIXTURE_DIRS``, and the literal path ``foo/bar/mydata.json``.
    335335
     336When fixture files are processed, the data is saved to the database as is.
     337Model defined ``save`` methods and ``pre_save`` signals are not called.
     338
    336339Note that the order in which fixture files are processed is undefined. However,
    337340all fixture data is installed as a single transaction, so data in
    338341one fixture can reference data in another fixture. If the database backend
Back to Top