summaryrefslogtreecommitdiff
path: root/db/migrate/20210312140029_add_owner_and_id_index_on_active_ci_pipeline_schedules.rb
blob: 111486a17abc349f3915ea5ffbd920ec35d98084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddOwnerAndIdIndexOnActiveCiPipelineSchedules < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_ci_pipeline_schedules_on_owner_id_and_id_and_active'

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_pipeline_schedules, [:owner_id, :id], where: "active = TRUE", name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :ci_pipeline_schedules, INDEX_NAME
  end
end