Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRaphael Sofaer <raphael@joindiaspora.com>2011-07-05 19:52:48 +0400
committerRaphael Sofaer <raphael@joindiaspora.com>2011-07-05 19:52:48 +0400
commit5f592f9616c98c837ff03a9a0c23be14ff6e143f (patch)
tree90e2b0f72f2a78d0bf44886e4b6af469ed345ed1 /lib
parent130914267bc6954a6735a33741e96c8d81e7f5cb (diff)
Schema:load in ci breaks it, because we would need to drop and re-create as well
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/cruise.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/cruise.rake b/lib/tasks/cruise.rake
index ccc3e1b5f..1e2a31cbf 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