From fd99994fdb6081b1a9d291233b7e82475ff45792 Mon Sep 17 00:00:00 2001 From: Brady Lamprecht Date: Fri, 18 Oct 2019 14:59:55 -0600 Subject: [PATCH] Adding note on invalidating cache --- docs/administration/replicating-netbox.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/administration/replicating-netbox.md b/docs/administration/replicating-netbox.md index 6dd686594..781b3d214 100644 --- a/docs/administration/replicating-netbox.md +++ b/docs/administration/replicating-netbox.md @@ -39,6 +39,11 @@ If you want to export only the database schema, and not the data itself (e.g. fo ```no-highlight pg_dump -s netbox > netbox_schema.sql ``` +If you are migrating your instance of NetBox to a different machine, please make sure you invalidate the cache by performing this command: + +```no-highlight +python3 manage.py invalidate all +``` ---