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

20190919104119_index_timestamp_columns_for_merge_requests_creation_date.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e0d80630cd175078f8aefd15be0deda27a10933 (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
25
26
27
28
29
# frozen_string_literal: true

class IndexTimestampColumnsForMergeRequestsCreationDate < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(*index_arguments)
  end

  def down
    remove_concurrent_index(*index_arguments)
  end

  private

  def index_arguments
    [
      :merge_requests,
      [:target_project_id, :created_at],
      {
        name: 'index_merge_requests_target_project_id_created_at'
      }
    ]
  end
end