Files
ubicloud/migrate/20250814_add_custom_domain_to_static_app.rb
2025-08-13 13:34:05 +02:00

10 lines
181 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:static_app) do
add_column :custom_domain, String, collate: '"C"', null: true
end
end
end