ubicloud/migrate/20251112_nic_entity_mac_nil_allow.rb
Furkan Sahin 3cabc5821f Nic allow mac to be nil -migration-
We don't need that field for AWS nics, we might drop the column all
together later specifically for that type of nics.
2025-11-17 12:23:27 +01:00

9 lines
139 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:nic) do
set_column_allow_null :mac
end
end
end