Files
ubicloud/migrate/20250114_add_leaseweb_host.rb
Furkan Sahin 63c6cfa574 dirty
2025-01-24 17:09:58 +01:00

11 lines
246 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
create_table :leaseweb_host do
foreign_key :id, :vm_host, primary_key: true, type: :uuid
column :server_identifier, :text, null: false, unique: true
end
end
end