summaryrefslogtreecommitdiff
path: root/app/workers/database/batched_background_migration_worker.rb
blob: 29804be832d1c28506d16a83a1482e1c54fe2891 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Database
  class BatchedBackgroundMigrationWorker # rubocop:disable Scalability/IdempotentWorker
    include BatchedBackgroundMigration::SingleDatabaseWorker

    def self.tracking_database
      @tracking_database ||= Gitlab::Database::MAIN_DATABASE_NAME.to_sym
    end
  end
end