Use db:schema:load task instead of db:migrate

Migrations can break over time but schemas are forever.
This commit is contained in:
Erik Michaels-Ober 2011-06-08 03:16:42 -07:00
parent 99433dec8b
commit 3350839d2e
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
script: "bundle exec rake db:migrate test"
script: "bundle exec rake db:schema:load test"
rvm:
- 1.8.7
- 1.9.2