mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-21 20:44:18 +00:00
🗒 Aggiorna documentazione sul database
This commit is contained in:
parent
28a231e188
commit
a55ee83071
1 changed files with 19 additions and 0 deletions
|
@ -2,3 +2,22 @@
|
|||
|
||||
> Dump del/dei database (se previsto)
|
||||
|
||||
## Informazioni
|
||||
|
||||
Il database usa il DBMS **PostgreSQL**.
|
||||
|
||||
## Fare un dump del database
|
||||
|
||||
Per eseguire un dump del database è necessario eseguire:
|
||||
|
||||
```bash
|
||||
pg_dump --create --clean --file="${dump_filename}" --format="plain" --dbname="${nome_database}"
|
||||
```
|
||||
|
||||
## Ripristinare il database
|
||||
|
||||
Per ripristinare un dump del database è necessario eseguire:
|
||||
|
||||
```bash
|
||||
pg_restore --create --clean --file="${dump_filename}" --format="plain" --dbname="${nome_database}"
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue