-- Revert nodes.status ENUM to the original six values. -- WARNING: any rows currently in 'blocked_suspect' or 'blocked_confirmed' -- will be rejected; run only after verifying no nodes are in those states. ALTER TABLE nodes MODIFY COLUMN status ENUM('provisioning','probing','up','draining','down','destroyed') NOT NULL DEFAULT 'provisioning';