Fixed #32291 -- Added fixtures compression support to dumpdata.

This commit is contained in:
Paolo Melchiorre 2021-01-12 15:47:58 +01:00 committed by GitHub
parent ba31b01034
commit c412d9af7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 138 additions and 3 deletions

View file

@ -338,6 +338,9 @@ Management Commands
* :djadmin:`loaddata` now supports fixtures stored in XZ archives (``.xz``) and
LZMA archives (``.lzma``).
* :djadmin:`dumpdata` now can compress data in the ``bz2``, ``gz``, ``lzma``,
or ``xz`` formats.
* :djadmin:`makemigrations` can now be called without an active database
connection. In that case, check for a consistent migration history is
skipped.