Merge pull request #3627 from bdlamprecht/pg_dump-documentation

Adding note on invalidating cache
This commit is contained in:
Jeremy Stretch 2019-10-23 12:24:27 -04:00 committed by GitHub
commit 95fec1a87c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```
---