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

03_settings.rb « development « fixtures « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a4a5d436bf77beb3510d32e7ba238250e078459 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

# Enable hashed storage, in development mode, for all projects by default.
Gitlab::Seeder.quiet do
  ApplicationSetting.create_from_defaults unless ApplicationSetting.current_without_cache
  ApplicationSetting.current_without_cache.update!(hashed_storage_enabled: true)
  print '.'
end