debian-mirror-gitlab/db/migrate/20200508203901_add_repository_storages_weighted_to_application_settings.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
class AddRepositoryStoragesWeightedToApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
2020-07-10 23:44:40 +05:30
class ApplicationSetting < ActiveRecord::Base
serialize :repository_storages
self.table_name = 'application_settings'
end
2020-06-23 00:09:42 +05:30
def up
add_column :application_settings, :repository_storages_weighted, :jsonb, default: {}, null: false
2020-07-10 23:44:40 +05:30
seed_repository_storages_weighted
2020-06-23 00:09:42 +05:30
end
def down
remove_column :application_settings, :repository_storages_weighted
end
2020-07-10 23:44:40 +05:30
private
def seed_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|
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
2020-06-23 00:09:42 +05:30
end