3

私がしなければならないデータベース操作をしようとしているrails db

私はやっているheroku run rails dbが、私は得ている

Runningレールデシベルattached to terminal... up, run.7334 Couldn't find database client: psql. Check your $PATH and try again.

私はやった:

gem update heroku

しかし、それは役に立ちませんでした。それでも同じエラーが発生します。

また:

$ heroku run bundle exec rails db --account work --app dmplanning
Running `bundle exec rails db` attached to terminal... up, run.1572
Couldn't find database client: psql. Check your $PATH and try again.
4

1 に答える 1

5

これらは機能します:

heroku pg:psql --app # From the app's root directory
heroku pg:psql --app your_app_name # specifying the app
heroku pg:psql --app your_app_name --account work 
                   # if you have multiple accounts, specify which one.
于 2013-03-06T21:05:24.100 に答える