Welcome to mirror list, hosted at ThFree Co, Russian Federation.

backfill_hashed_project_repositories.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a61946166638773df5ccc1ae523a706c6e1f5b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Class that will fill the project_repositories table for projects that
    # are on hashed storage and an entry is is missing in this table.
    class BackfillHashedProjectRepositories < BackfillProjectRepositories
      private

      def projects
        Project.on_hashed_storage
      end
    end
  end
end