Uploading to Heroku DB rake:migrate problem

后端 未结 2 1381
不思量自难忘°
不思量自难忘° 2021-01-15 23:29

having a problem with a heroku upload. Quite new to RoR so please excuse the beginners question.

I\'m following the Ruby on Rails Tutorial (http://ruby.railstutorial

2条回答
  •  滥情空心
    2021-01-16 00:24

    Not quite the answer Simone, but after more digging, the answer finally came up. I needed to do the following:

    In the gemfile, I needed to change gem 'sqlite3' to:

    group :development, :test do   gem 'sqlite3' end
    
    group :production do   gem 'pg' end
    

    and then I needed to heroku create --stack cedar.

    Thanks for your help everyone regardless, and I hope this helps someone in the future.

提交回复
热议问题