Add pg_restore option (#874)

This commit is contained in:
wiperS200 2021-05-06 09:26:36 +09:00 committed by GitHub
parent 22ae9cabc7
commit a4dc91ac03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
```