mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
23 lines
510 B
Markdown
23 lines
510 B
Markdown
# Database
|
|
|
|
> 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}"
|
|
```
|