1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/database/README.md

24 lines
510 B
Markdown
Raw Normal View History

2021-04-11 16:09:29 +00:00
# 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}"
```