From 5f592f9616c98c837ff03a9a0c23be14ff6e143f Mon Sep 17 00:00:00 2001 From: Raphael Sofaer <raphael@joindiaspora.com> Date: Tue, 5 Jul 2011 08:52:48 -0700 Subject: [PATCH] Schema:load in ci breaks it, because we would need to drop and re-create as well --- lib/tasks/cruise.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/cruise.rake b/lib/tasks/cruise.rake index ccc3e1b5f8..1e2a31cbfc 100644 --- a/lib/tasks/cruise.rake +++ b/lib/tasks/cruise.rake @@ -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 -- GitLab