summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200608212652_lock_version_cleanup_for_ci_stages.rb
blob: 12e2897123e30ab2fc37f8276c2c943a60ee9dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class LockVersionCleanupForCiStages < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    validate_not_null_constraint :ci_stages, :lock_version
    remove_concurrent_index :ci_stages, :id, where: "lock_version IS NULL", name: "tmp_index_ci_stages_lock_version"
  end

  def down
    add_concurrent_index :ci_stages, :id, where: "lock_version IS NULL", name: "tmp_index_ci_stages_lock_version"
  end
end