mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 05:42:15 +08:00
10 lines
219 B
Ruby
10 lines
219 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
create_table(:nic_aws_resource) do
|
|
foreign_key :id, :nic, type: :uuid, primary_key: true
|
|
column :eip_allocation_id, :text
|
|
end
|
|
end
|
|
end
|