summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220624062300_delete_backfill_ci_runner_semver_migration.rb
blob: 4632d9104ea79ecb0af92d072816912fbff2a189 (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 DeleteBackfillCiRunnerSemverMigration < Gitlab::Database::Migration[2.0]
  restrict_gitlab_migration gitlab_schema: :gitlab_ci

  MIGRATION = 'BackfillCiRunnerSemver'

  disable_ddl_transaction!

  def up
    # Disabled background migration introduced in same milestone as it was decided to change approach
    # and the semver column will no longer be needed
    delete_batched_background_migration(MIGRATION, :ci_runners, :id, [])
  end

  def down
    # no-op
  end
end