Herokuの本番環境で、 以下のようなコマンドでdatabaseを削除するアクションをしようとすると、タイトルのようなPermissionエラーにあう。
$ heroku run rails db:migarte:reset // error : Starting process with command `bundle exec rake db:migrate:reset` : State changed from starting to up : FATAL: permission denied for database "postgres" : DETAIL: User does not have CONNECT privilege.
このような時は、以下のコマンドでPostgres側からデータベースをリセットすれば良い。
$ heroku pg:reset DATABASE_URL