summaryrefslogtreecommitdiff
path: root/app/workers/background_migration_worker.rb
blob: 6145f34b69328dd41a500d8d91307050b1fab5d0 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class BackgroundMigrationWorker # rubocop:disable Scalability/IdempotentWorker
  include BackgroundMigration::SingleDatabaseWorker

  def self.tracking_database
    @tracking_database ||= Gitlab::BackgroundMigration::DEFAULT_TRACKING_DATABASE
  end
end