mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 05:42:15 +08:00
13 lines
278 B
Ruby
13 lines
278 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:access_policy) do
|
|
add_column :managed, :boolean, null: false, default: false
|
|
end
|
|
|
|
alter_table(:project_invitation) do
|
|
add_column :policy, :text, collate: '"C"'
|
|
end
|
|
end
|
|
end
|