debian-mirror-gitlab/db/fixtures/development/02_application_settings.rb
2019-12-04 20:38:33 +05:30

11 lines
363 B
Ruby

# frozen_string_literal: true
puts "Creating the default ApplicationSetting record.".color(:green)
ApplicationSetting.create_from_defaults
# Details https://gitlab.com/gitlab-org/gitlab-foss/issues/46241
puts "Enable hashed storage for every new projects.".color(:green)
ApplicationSetting.current_without_cache.update!(hashed_storage_enabled: true)
print '.'