summaryrefslogtreecommitdiff
path: root/db/migrate/20170506085040_add_index_to_pipeline_pipeline_schedule_id.rb
blob: 08a7f3fc9abb7c3aa34bad17bd1cd85536899de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class AddIndexToPipelinePipelineScheduleId < ActiveRecord::Migration
  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