debian-mirror-gitlab/db/migrate/20190918104212_add_merge_request_metrics_merged_at_index.rb
2019-12-04 20:38:33 +05:30

18 lines
372 B
Ruby

# frozen_string_literal: true
class AddMergeRequestMetricsMergedAtIndex < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :merge_request_metrics, [:merged_at, :id]
end
def down
remove_concurrent_index :merge_request_metrics, [:merged_at, :id]
end
end