load schema instead of migrating on rake db:rebuild

This commit is contained in:
danielgrippi 2011-06-06 19:39:14 -07:00
parent bd8ea324ae
commit d7efee55a1

View file

@ -4,7 +4,7 @@
namespace :db do
desc "rebuild and prepare test db"
task :rebuild => [:drop, :create, :migrate, 'db:test:prepare']
task :rebuild => [:drop, :create, 'schema:load', 'db:test:prepare']
namespace :integration do
# desc 'Check for pending migrations and load the integration schema'