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.
10 lines
169 B
Ruby
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
|