Ruby - ActiveRecord::ConnectionNotEstablished

前端 未结 12 1770
臣服心动
臣服心动 2020-12-30 19:08

I am rather new to Ruby and have been following along with the book \"Ruby On Rails 3 Tutorial - Learn Ruby by Example - by Michael Hartl\". I am currently in Chapter 3 whic

12条回答
  •  鱼传尺愫
    2020-12-30 19:56

    In development environment, just run

    bundle exec rake db:setup
    

    In production environment, run

    bundle exec RAILS_ENV=production rake db:setup
    

提交回复
热议问题