mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 22:02:18 +08:00
9 lines
198 B
Ruby
9 lines
198 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:github_installation) do
|
|
add_column :allocator_preferences, :jsonb, null: false, default: "{}"
|
|
end
|
|
end
|
|
end
|