Rails 3. Creating a production database

匿名 (未验证) 提交于 2019-12-03 03:10:03

问题:

How can I create a production database in Rails 3 and load a schema to it?

I tried the following approaches...

I.

rake db:create Rails.env='production' && rake db:schema:load Rails.env='production' 

II.

# config/environment.rb # Set the rails environment Rails.env='production' rake db:create && rake db:schema:load 

... but neither of them works.

Thanks.

Debian GNU/Linux 5.0.6;

Rails 3.0.0;

Sqlite3 3.7.2.

回答1:

You can set the rails env off of the environment variable RAILS_ENV

RAILS_ENV=production bundle exec rake db:create db:schema:load 

should work



回答2:

Shouldn't this be

RAILS_ENV=production bundle exec rake db:create db:schema:load 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!