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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-16 14:30:03 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-16 14:30:34 +0300
commit0859ba75a873ce78f77587369b9e761a2cc782db (patch)
tree06b30c8f5006efdb6ddbeec51678dbad2e932379 /lib
parentee5ce705d40cf7a2c27ac0f0c2dc330ef320edfc (diff)
Fix migrate task
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/ci/migrate.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/ci/migrate.rake b/lib/tasks/ci/migrate.rake
index 2bbcd0f578c..e7d41874a11 100644
--- a/lib/tasks/ci/migrate.rake
+++ b/lib/tasks/ci/migrate.rake
@@ -57,7 +57,7 @@ namespace :ci do
desc 'GitLab | Migrate CI services'
task services: :environment do
c = ActiveRecord::Base.connection
- c.execute("UPDATE ci_services SET type=CONCAT('Ci::'', type) WHERE type NOT LIKE 'Ci::%'")
+ c.execute("UPDATE ci_services SET type=CONCAT('Ci::', type) WHERE type NOT LIKE 'Ci::%'")
end
end
end