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/20210129225244_add_index_to_oncall_shfts_on_starts_at_and_ends_at.rb')
-rw-r--r--db/migrate/20210129225244_add_index_to_oncall_shfts_on_starts_at_and_ends_at.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/db/migrate/20210129225244_add_index_to_oncall_shfts_on_starts_at_and_ends_at.rb b/db/migrate/20210129225244_add_index_to_oncall_shfts_on_starts_at_and_ends_at.rb
deleted file mode 100644
index 8285aceb24a..00000000000
--- a/db/migrate/20210129225244_add_index_to_oncall_shfts_on_starts_at_and_ends_at.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# frozen_string_literal: true
-
-class AddIndexToOncallShftsOnStartsAtAndEndsAt < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- NEW_NAME = 'index_oncall_shifts_on_rotation_id_and_starts_at_and_ends_at'
- OLD_NAME = 'index_incident_management_oncall_shifts_on_rotation_id'
-
- def up
- add_concurrent_index :incident_management_oncall_shifts, %i[rotation_id starts_at ends_at], name: NEW_NAME
-
- remove_concurrent_index_by_name :incident_management_oncall_shifts, OLD_NAME
- end
-
- def down
- add_concurrent_index :incident_management_oncall_shifts, :rotation_id, name: OLD_NAME
-
- remove_concurrent_index_by_name :incident_management_oncall_shifts, NEW_NAME
- end
-end