summaryrefslogtreecommitdiff
path: root/app/workers/database/batched_background_migration/ci_database_worker.rb
blob: b04db87631a11f3248137e6e56e09c1fefb8237b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
module Database
  module BatchedBackgroundMigration
    class CiDatabaseWorker # rubocop:disable Scalability/IdempotentWorker
      include SingleDatabaseWorker

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