Ticket #3909: django-admin.txt.diff

File django-admin.txt.diff, 1.0 KB (added by adurdin@…, 17 years ago)
  • docs/django-admin.txt

     
    106106By default, the database will be dumped in JSON format. If you want the output
    107107to be in another format, use the ``--format`` option (e.g., ``format=xml``).
    108108You may specify any Django serialization backend (including any user specified
    109 serialization backends named in the ``SERIALIZATION_MODULES`` setting).
     109serialization backends named in the ``SERIALIZATION_MODULES`` setting). The
     110``--indent`` option can be used to pretty-print the output.
    110111
    111112If no application name is provided, all installed applications will be dumped.
    112113
     
    217218supports row-level constraints, these constraints will be checked at the
    218219end of the transaction.
    219220
     221The ``dumpdata`` command can be used to generate input for ``loaddata``.
     222
    220223.. admonition:: MySQL and Fixtures
    221224
    222225    Unfortunately, MySQL isn't capable of completely supporting all the
Back to Top