debian-mirror-gitlab/db/migrate/20170506085040_add_index_to_pipeline_pipeline_schedule_id.rb

20 lines
471 B
Ruby
Raw Normal View History

2019-01-03 12:48:30 +05:30
class AddIndexToPipelinePipelineScheduleId < ActiveRecord::Migration
2017-08-17 22:00:37 +05:30
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