debian-mirror-gitlab/db/post_migrate/20180212102028_remove_tmp_partial_null_index_from_builds.rb
2018-03-27 19:54:05 +05:30

15 lines
402 B
Ruby

class RemoveTmpPartialNullIndexFromBuilds < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
disable_ddl_transaction!
def up
remove_concurrent_index_by_name(:ci_builds, 'tmp_id_partial_null_index')
end
def down
add_concurrent_index(:ci_builds, :id, where: 'stage_id IS NULL',
name: 'tmp_id_partial_null_index')
end
end