mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed #32291 -- Added fixtures compression support to dumpdata.
This commit is contained in:
parent
ba31b01034
commit
c412d9af7e
4 changed files with 138 additions and 3 deletions
|
@ -364,6 +364,17 @@ standard output.
|
|||
When this option is set and ``--verbosity`` is greater than 0 (the default), a
|
||||
progress bar is shown in the terminal.
|
||||
|
||||
Fixtures compression
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. versionadded:: 3.2
|
||||
|
||||
The output file can be compressed with one of the ``bz2``, ``gz``, ``lzma``, or
|
||||
``xz`` formats by ending the filename with the corresponding extension.
|
||||
For example, to output the data as a compressed JSON file::
|
||||
|
||||
django-admin dumpdata -o mydata.json.gz
|
||||
|
||||
``flush``
|
||||
---------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue