如何在Rails 3中创建生产数据库并加载架构?
我尝试了以下方法......
一世.
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
......但它们都不起作用.
谢谢.
Debian GNU/Linux 5.0.6;
Rails 3.0.0;
Sqlite3 3.7.2.
您可以将环境变量设置为环境变量 RAILS_ENV
RAILS_ENV=production bundle exec rake db:create db:schema:load
应该管用
不应该这样
RAILS_ENV=production bundle exec rake db:create db:schema:load