Files
ubicloud/migrate/20240730_add_firewall_location.rb
Burak Velioglu 13c085b15d Add migration file to add location for firewall
Since we are updating firewalls to be a location-based resource
instead of global, adding location column to firewall model.
2024-07-31 14:26:54 +03:00

10 lines
161 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:firewall) do
add_column :location, :text, collate: '"C"'
end
end
end