ubicloud/migrate/20251023_firewall_rule_description.rb
Jeremy Evans 2b2b1e790a Add firewall_rule.description column
We plan to convert PostgresFirewallRule to FirewallRule, and
PostgresFirewallRule has a description column, which we don't
want to lose.
2025-10-25 06:10:55 +09:00

9 lines
154 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:firewall_rule) do
add_column :description, String
end
end
end