Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210129225244_add_index_to_oncall_shfts_on_starts_at_and_ends_at.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8285aceb24abb50cdb9cf814088305ecbcaf2080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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