mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-11-28 00:20:26 +08:00
We plan to convert PostgresFirewallRule to FirewallRule, and PostgresFirewallRule has a description column, which we don't want to lose.
9 lines
154 B
Ruby
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
|