Since we are updating firewalls to be a location-based resource instead of global, adding location column to firewall model.
10 lines
161 B
Ruby
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
|