Heroku db:push fails with segfault

前端 未结 2 868
温柔的废话
温柔的废话 2020-12-28 17:14

I am installing a new Heroku app for Rails 3.1, Ruby 1.9.2. The problem is in doing \'heroku db:push\' to populate the database (which has been duly schematized--the only pr

2条回答
  •  时光说笑
    2020-12-28 17:27

    Your code is trying to run the 1.9.2 version of SQLite using Ruby 1.8.7.

    I would suggest switching to 1.9.2 before trying your push.

    rvm use 1.9.2-p290
    heroku db:push
    

    Ideally you want to be switching to 1.9.2 full stop.

提交回复
热议问题