summaryrefslogtreecommitdiff
path: root/db/migrate/20200304160800_add_index_services_on_template.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-10 09:08:10 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-10 09:08:10 +0000
commit82fa8a3d1e8466ef36b58604d20fcc145ea12118 (patch)
treec5c0286537405c2fa7719ecce3ed0d73d947c555 /db/migrate/20200304160800_add_index_services_on_template.rb
parent232655bf32cd474d54de357b65ef43d77271117c (diff)
downloadgitlab-ce-82fa8a3d1e8466ef36b58604d20fcc145ea12118.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate/20200304160800_add_index_services_on_template.rb')
-rw-r--r--db/migrate/20200304160800_add_index_services_on_template.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20200304160800_add_index_services_on_template.rb b/db/migrate/20200304160800_add_index_services_on_template.rb
new file mode 100644
index 00000000000..731fa04123c
--- /dev/null
+++ b/db/migrate/20200304160800_add_index_services_on_template.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class AddIndexServicesOnTemplate < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ # This migration is a corrective action to add the missing
+ # index_services_on_template index on staging.
+ def up
+ add_concurrent_index(:services, :template) unless index_exists?(:services, :template)
+ end
+
+ def down
+ # No reverse action as this is a corrective migration.
+ end
+end