Bosco Monkey
Monkeying around with Bosco. These are notes to myself. If you're reading this, you're probably lost.
Tuesday, May 05, 2009
Friday, May 01, 2009
Rails DB Migration on production
rake db:migrate RAILS_ENV="production"That command will run all the Migrations it finds under db/migrate until it's at the highest version number. You can override the version number by appending VERSION=x after the command. - i.e., pass RAILS_ENV="test to force the migration to run on the test.