heroku db:pull not working

前端 未结 3 566
长情又很酷
长情又很酷 2021-01-03 01:05
heroku db:pull postgresql://root:@localhost/db_name

After this command display this message

/usr/lib/ruby/gems/1.8/gems/rest-client-1.6.1/l

3条回答
  •  甜味超标
    2021-01-03 01:16

    Your connection string is wrong. Try:

    heroku db:pull postgres://root:@localhost/db_name
    

提交回复
热议问题