Schema:load in ci breaks it, because we would need to drop and re-create as well

This commit is contained in:
Raphael Sofaer 2011-07-05 08:52:48 -07:00
parent 130914267b
commit 5f592f9616

View file

@ -16,7 +16,7 @@ namespace :cruise do
end
task :migrate do
system('bundle exec rake db:schema:load')
system('bundle exec rake db:migrate')
exit_status = $?.exitstatus
raise "db:migrate failed!" unless exit_status == 0
end