mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-17 19:25:49 +00:00
10 lines
284 B
Ruby
10 lines
284 B
Ruby
# 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
|