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

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

puts "Creating the default ApplicationSetting record.".color(:green)
ApplicationSetting.create_from_defaults

# Details https://gitlab.com/gitlab-org/gitlab-ce/issues/46241
puts "Enable hashed storage for every new projects.".color(:green)
ApplicationSetting.current_without_cache.update!(hashed_storage_enabled: true)

print '.'