summaryrefslogtreecommitdiff
path: root/db/fixtures/development/02_application_settings.rb
blob: 67486d2ab5f87d452ae20cd6941907a4c0327e22 (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-foss/issues/46241
puts "Enable hashed storage for every new projects.".color(:green)
ApplicationSetting.current_without_cache.update!(hashed_storage_enabled: true)

print '.'