mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-11-28 08:30:27 +08:00
10 lines
244 B
Ruby
10 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:postgres_resource) do
|
|
add_column :trusted_ca_certs, :text, null: true
|
|
add_column :cert_auth_users, :jsonb, null: false, default: "[]"
|
|
end
|
|
end
|
|
end
|