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:
Diffstat (limited to 'db/migrate/20201103095752_add_issues_closed_at_index.rb')
-rw-r--r--db/migrate/20201103095752_add_issues_closed_at_index.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20201103095752_add_issues_closed_at_index.rb b/db/migrate/20201103095752_add_issues_closed_at_index.rb
deleted file mode 100644
index 7a8ee4e8d67..00000000000
--- a/db/migrate/20201103095752_add_issues_closed_at_index.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class AddIssuesClosedAtIndex < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index(:issues, [:project_id, :closed_at])
- end
-
- def down
- remove_concurrent_index_by_name(:issues, 'index_issues_on_project_id_and_closed_at')
- end
-end