summaryrefslogtreecommitdiff
path: root/db/migrate/20200509203901_reseed_repository_storages_weighted.rb
blob: 7a751b77c1cc931b9d147c93e62414d4d0f1e6b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

class ReseedRepositoryStoragesWeighted < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  class ApplicationSetting < ActiveRecord::Base
    serialize :repository_storages
    self.table_name = 'application_settings'
  end

  def up
    reseed_repository_storages_weighted
  end

  private

  def reseed_repository_storages_weighted
    # We need to flush the cache to ensure the newly-added column is loaded
    ApplicationSetting.reset_column_information

    # There should only be one row here due to
    # 20200420162730_remove_additional_application_settings_rows.rb
    ApplicationSetting.all.each do |settings|
      # Admins may have already tweaked these values, so don't do anything
      # if there is data already.
      next if settings.repository_storages_weighted.present?

      storages = Gitlab.config.repositories.storages.keys.collect do |storage|
        weight = settings.repository_storages.include?(storage) ? 100 : 0
        [storage.to_sym, weight]
      end

      settings.repository_storages_weighted = Hash[storages]
      settings.save!
    end
  end
end