debian-mirror-gitlab/db/post_migrate/20200608212549_lock_version_cleanup_for_issues.rb
2020-08-09 17:44:08 +05:30

19 lines
452 B
Ruby

# frozen_string_literal: true
class LockVersionCleanupForIssues < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
validate_not_null_constraint :issues, :lock_version
remove_concurrent_index_by_name :issues, name: 'index_issues_on_id'
end
def down
add_concurrent_index :issues, :id, where: "lock_version IS NULL", name: 'index_issues_on_id'
end
end