Browse Source

Add wagtailcore.modellogentry to ignored content in fixtures

Thibaud Colas 2 years ago
parent
commit
4e0bf6e73a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      readme.md

+ 1 - 1
readme.md

@@ -217,7 +217,7 @@ If you're a Python or Django developer, fork the repo and get stuck in! If you'd
 If you change content or images in this repo and need to prepare a new fixture file for export, do the following on a branch:
 If you change content or images in this repo and need to prepare a new fixture file for export, do the following on a branch:
 
 
 ```bash
 ```bash
-./manage.py dumpdata --natural-foreign --indent 2 -e auth.permission -e contenttypes -e wagtailcore.GroupCollectionPermission -e wagtailcore.revision -e wagtailimages.rendition -e sessions -e wagtailsearch.indexentry -e wagtailsearch.sqliteftsindexentry -e wagtailcore.referenceindex -e wagtailcore.pagesubscription -e wagtailcore.pagelogentry > bakerydemo/base/fixtures/bakerydemo.json
+./manage.py dumpdata --natural-foreign --indent 2 -e auth.permission -e contenttypes -e wagtailcore.GroupCollectionPermission -e wagtailcore.revision -e wagtailimages.rendition -e sessions -e wagtailsearch.indexentry -e wagtailsearch.sqliteftsindexentry -e wagtailcore.referenceindex -e wagtailcore.pagesubscription -e wagtailcore.modellogentry -e wagtailcore.pagelogentry > bakerydemo/base/fixtures/bakerydemo.json
 prettier --write bakerydemo/base/fixtures/bakerydemo.json
 prettier --write bakerydemo/base/fixtures/bakerydemo.json
 ```
 ```