16 lines
401 B
Markdown
16 lines
401 B
Markdown
+++
|
|
date = "2017-07-13"
|
|
tags = ["heroku"]
|
|
title = "mastodon-heroku-db-reset"
|
|
slug = "heroku"
|
|
+++
|
|
|
|
herokuのdbがlimitに近づいてきたのでバックアップしていたものをリストアして対応した。
|
|
|
|
https://devcenter.heroku.com/articles/heroku-postgres-import-export
|
|
|
|
```bash
|
|
$ pg_restore --verbose --clean --no-acl --no-owner -h $HOST -U $USERNAME -d $DATABASE ./$filename
|
|
```
|
|
|