Create database.backup

This commit is contained in:
Ivar Conradi Østhus
2016-12-20 11:11:36 +01:00
parent 744e41f9aa
commit aede451d3b
+16
View File
@@ -0,0 +1,16 @@
# Datbase backups
When upgrading to new major version of Unleash it is advised to do a
full database backup to ease rollback in case of failures.
1. Create a database backup:
```
pg_dump --clean -U unleash_user -W -h localhost unleash > unleash-db.dump
```
2. Restore from a backup:
```
psql -U unleash_user -W -h localhost unleash < unleash-db.dump
```