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, 0 insertions, 17 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
deleted file mode 100644
index c957fc2f6fc..00000000000
--- a/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveRedundantStatusIndexOnCiBuilds < ActiveRecord::Migration[4.2]
- 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