From a4dc91ac037da09769f17104ce62aed03bb4acb3 Mon Sep 17 00:00:00 2001 From: wiperS200 <38719652+wiperS200@users.noreply.github.com> Date: Thu, 6 May 2021 09:26:36 +0900 Subject: [PATCH] Add pg_restore option (#874) --- content/en/admin/migrating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/admin/migrating.md b/content/en/admin/migrating.md index 493deed8..90ff6367 100644 --- a/content/en/admin/migrating.md +++ b/content/en/admin/migrating.md @@ -62,7 +62,7 @@ createdb -T template0 mastodon_production Then import it: ```bash -pg_restore -U mastodon -n public --no-owner --role=mastodon \ +pg_restore -Fc -U mastodon -n public --no-owner --role=mastodon \ -d mastodon_production backup.dump ```