Skip to content

Commit 6ba6ff3

Browse files
Jathnjeremystretch
authored andcommitted
Fixes #19764: docs/administration replicating netbox - wrong table name
1 parent 7bb7307 commit 6ba6ff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/administration/replicating-netbox.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ pg_dump --username netbox --password --host localhost netbox > netbox.sql
1818
!!! note
1919
You may need to change the username, host, and/or database in the command above to match your installation.
2020

21-
When replicating a production database for development purposes, you may find it convenient to exclude changelog data, which can easily account for the bulk of a database's size. To do this, exclude the `extras_objectchange` table data from the export. The table will still be included in the output file, but will not be populated with any data.
21+
When replicating a production database for development purposes, you may find it convenient to exclude changelog data, which can easily account for the bulk of a database's size. To do this, exclude the `core_objectchange` table data from the export. The table will still be included in the output file, but will not be populated with any data.
2222

2323
```no-highlight
24-
pg_dump ... --exclude-table-data=extras_objectchange netbox > netbox.sql
24+
pg_dump ... --exclude-table-data=core_objectchange netbox > netbox.sql
2525
```
2626

2727
### Load an Exported Database

0 commit comments

Comments
 (0)