api/lnvps_db/migrations/20241204142919_delete-vm.sql
2024-12-04 14:57:35 +00:00

5 lines
172 B
SQL

-- Add migration script here
alter table vm
add column deleted bit(1) not null default 0;
alter table vm_ip_assignment
add column deleted bit(1) not null default 0;