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

class ScheduleMergeRequestAssigneesMigrationProgressCheck < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  MIGRATION = 'MergeRequestAssigneesMigrationProgressCheck'.freeze

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    BackgroundMigrationWorker.perform_async(MIGRATION)
  end

  def down
  end
end