Files
ubicloud/migrate/20250701_add_pg_configs.rb
2025-07-01 17:28:29 +05:30

11 lines
262 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:postgres_resource) do
add_column :user_config, :jsonb, null: false, default: "{}"
add_column :pgbouncer_user_config, :jsonb, null: false, default: "{}"
end
end
end