2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-06-13 02:35:29 +00:00

Update internal links to use relative pathing

This commit is contained in:
Oliver Walters
2020-10-19 11:15:31 +11:00
parent 521b2171f2
commit 9150675a56
13 changed files with 35 additions and 35 deletions

View File

@ -19,13 +19,12 @@ This will export all data (including user information) to a json data file.
### Initialize New Database
Configure the new database using the normal processes (see [Configuration](/start/config))
Configure the new database using the normal processes (see [Configuration](../config))
Then, ensure that the database schema are correctly initialized in the new database:
```
python3 InvenTree/manage.py makemigrations
python3 InvenTree/manage.py migrate --run-syncdb
invoke migrate
```
### Import Data
@ -35,5 +34,6 @@ The new database should now be correctly initialized with the correct table stru
```
python3 InvenTree/manage.py loaddata data.json
```
!!! info "Character Encoding"
If the character encoding of the data file does not exactly match the target database, the import operation may not succeed. In this case, some manual editing of the database JSON file may be required.
If the character encoding of the data file does not exactly match the target database, the import operation may not succeed. In this case, some manual editing of the database JSON file may be required.