diff options
| author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-09-16 13:30:03 +0200 | 
|---|---|---|
| committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-09-16 13:30:34 +0200 | 
| commit | 0859ba75a873ce78f77587369b9e761a2cc782db (patch) | |
| tree | 06b30c8f5006efdb6ddbeec51678dbad2e932379 | |
| parent | ee5ce705d40cf7a2c27ac0f0c2dc330ef320edfc (diff) | |
| download | gitlab-ce-0859ba75a873ce78f77587369b9e761a2cc782db.tar.gz | |
Fix migrate task
| -rw-r--r-- | lib/tasks/ci/migrate.rake | 2 | 
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 | 
