summaryrefslogtreecommitdiff
path: root/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb')
-rw-r--r--db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb b/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb
new file mode 100644
index 00000000000..f4f7cb6f8ca
--- /dev/null
+++ b/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class RemoveRedundantStatusIndexOnCiBuilds < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ remove_concurrent_index :ci_builds, :status
+ end
+
+ def down
+ add_concurrent_index :ci_builds, :status
+ end
+end