From 7cc1c84b4b3f3613962ab7913870a477e292734b Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 20 Jun 2021 16:13:07 +1000 Subject: [PATCH 1/2] exclude exchange rate info from import / export tasks --- tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks.py b/tasks.py index 3c4a2175e1..07fc64c03e 100644 --- a/tasks.py +++ b/tasks.py @@ -257,6 +257,8 @@ def content_excludes(): "django_q.task", "django_q.ormq", "users.owner", + "exchange.rate", + "exchange.exchangebackend", ] output = "" From 5a2227862a95333b1e741459ba131caf097ed315 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 20 Jun 2021 16:36:39 +1000 Subject: [PATCH 2/2] Exclude authtoken --- tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.py b/tasks.py index 07fc64c03e..4522629e25 100644 --- a/tasks.py +++ b/tasks.py @@ -251,6 +251,7 @@ def content_excludes(): "contenttypes", "sessions.session", "auth.permission", + "authtoken.token", "error_report.error", "admin.logentry", "django_q.schedule",