summaryrefslogtreecommitdiff
path: root/db/migrate/20170506085040_add_index_to_pipeline_pipeline_schedule_id.rb
blob: 9d8cc8a83a29f11142b06beb81d7dc9d7c3fc202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class AddIndexToPipelinePipelineScheduleId < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless index_exists?(:ci_pipelines, :pipeline_schedule_id)
      add_concurrent_index(:ci_pipelines, :pipeline_schedule_id)
    end
  end

  def down
    if index_exists?(:ci_pipelines, :pipeline_schedule_id)
      remove_concurrent_index(:ci_pipelines, :pipeline_schedule_id)
    end
  end
end