summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221018193635_ensure_task_note_renaming_background_migration_finished.rb
blob: c6ae0f185d8402a3f8b79896b7f1380c0ce10512 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

class EnsureTaskNoteRenamingBackgroundMigrationFinished < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  restrict_gitlab_migration gitlab_schema: :gitlab_main

  MIGRATION = 'RenameTaskSystemNoteToChecklistItem'

  def up
    ensure_batched_background_migration_is_finished(
      job_class_name: MIGRATION,
      table_name: :system_note_metadata,
      column_name: :id,
      job_arguments: []
    )
  end

  def down
    # noop
  end
end