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
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2018-08-07 18:37:24 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2018-08-07 20:51:17 +0300
commitdb0d75ea3e533dec746ee75c964ee4951d38761c (patch)
tree700436e1cdbe323dd2b279e8a8b5ff9cd9152da4 /db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb
parent80c47f8eb44d04f6b4f57d58859fbab3a40485a6 (diff)
Remove redundant ci_builds (status) index
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