Files
ubicloud/migrate/20240425_remove_fw_vm_id.rb
2024-05-02 20:04:04 +02:00

16 lines
234 B
Ruby

# frozen_string_literal: true
Sequel.migration do
up do
alter_table(:firewall) do
drop_column :vm_id
end
end
down do
alter_table(:firewall) do
add_foreign_key :vm_id, :vm, type: :uuid
end
end
end