As cache flag will be moved from project level to insallation level, adding a column to github installation model.
10 lines
193 B
Ruby
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
|