heroku上のデータベース(pstgrsql)を削除して作り直したい
$ heroku run rails db:reset
rails aborted!
ActiveRecord::ProtectedEnvironmentError: You are attempting to run a destructive action against your 'production' database.
If you are sure you want to continue, run the same command with the environment variable:
.
.
.
.
どうやら、production環境のデータベースは誤って
消せないような仕組みらしい
ではどうするか、
下記のコマンドで消せました。
$ heroku pg:reset -a <アプリ名>
以上
Heroku上のデータベースの削除にしかたでした。
再立ち上げを忘れずに!
$ heroku run rails db:migrate
参考文献