Files
ubicloud/migrate/20250805_ec2_dns_name_info.rb
2025-08-05 16:26:18 +02:00

16 lines
254 B
Ruby

# frozen_string_literal: true
Sequel.migration do
up do
alter_table(:aws_instance) do
add_column :ipv4_dns_name, :text, null: true
end
end
down do
alter_table(:aws_instance) do
drop_column :ipv4_dns_name
end
end
end