From a55ee83071a59df74e9a91eb041a69b67c974e6f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi <256895@studenti.unimore.it> Date: Thu, 15 Apr 2021 19:30:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=92=20Aggiorna=20documentazione=20sul?= =?UTF-8?q?=20database?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/database/README.md b/database/README.md index 0b7fd04..c01c8a2 100644 --- a/database/README.md +++ b/database/README.md @@ -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}" +```