Files
ubicloud/migrate/20241007_lb_custom_hostname.rb
2024-10-07 17:08:25 +02:00

11 lines
274 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:load_balancer) do
add_column :custom_hostname, :text, collate: '"C"', null: true, unique: true
add_foreign_key :custom_hostname_dns_zone_id, :dns_zone, type: :uuid
end
end
end