Files
ubicloud/migrate/20241122_add_transparent_cache.rb
Burak Velioglu 5d488f0103 Add cache enablement migration for github installation
As cache flag will be moved from project level to insallation
level, adding a column to github installation model.
2024-11-29 16:09:47 +03:00

10 lines
193 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:github_installation) do
add_column :cache_enabled, :boolean, default: false, null: false
end
end
end