Files
api/lnvps_db/migrations/20250324143556_load_factors.sql
Kieran ec7fa92010
All checks were successful
continuous-integration/drone/push Build is passing
feat: extend host load factors
2025-03-24 15:18:18 +00:00

5 lines
222 B
SQL

-- Add migration script here
alter table vm_host
add column load_memory float not null default 1.0,
add column load_disk float not null default 1.0,
change column load_factor load_cpu float not null default 1.0