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=\'
Shouldn't this be
RAILS_ENV=production bundle exec rake db:create db:schema:load
You can set the rails env off of the environment variable RAILS_ENV
RAILS_ENV
should work