1
Fork 0
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:
Stefano Pigozzi 2021-04-15 19:30:14 +02:00
parent 28a231e188
commit a55ee83071
Signed by untrusted user who does not match committer: steffo
GPG key ID: 6965406171929D01

View file

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