Files
ubicloud/migrate/20250121_enable_transparent_cache_by_default.rb
Burak Velioglu 83644cc6ca Enable transparent cache by default for new users
Enabling transparent cache by default for the new users as it
works properly for all the users enabled it. It will be enabled by
default for existing users after sending an informational mail to them.
2025-01-27 14:39:50 +03:00

10 lines
169 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:github_installation) do
set_column_default(:cache_enabled, true)
end
end
end