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

class CleanupBigintConversionForCiStages < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  TABLE = :ci_stages

  # rubocop:disable Migration/WithLockRetriesDisallowedMethod
  def up
    with_lock_retries do
      cleanup_conversion_of_integer_to_bigint(TABLE, :id)
    end
  end
  # rubocop:enable Migration/WithLockRetriesDisallowedMethod

  def down
    restore_conversion_of_integer_to_bigint(TABLE, :id)
  end
end