33

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.

geoff
  • 2,251
  • 1
  • 19
  • 34
Shamaoke
  • 6,222
  • 8
  • 34
  • 40

2 Answers2

82

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

Ahmed Ali
  • 671
  • 7
  • 10
Matt Briggs
  • 41,224
  • 16
  • 95
  • 126
12

Shouldn't this be

RAILS_ENV=production bundle exec rake db:create db:schema:load
Ahmed Ali
  • 671
  • 7
  • 10
Victor S
  • 5,098
  • 5
  • 44
  • 62