This commit is contained in:
mangomqy
2025-11-13 02:54:06 +00:00
commit c5e51ed069
254 changed files with 54901 additions and 0 deletions

View File

@ -0,0 +1,12 @@
-- Migration: add status_reason / last_operation / last_error columns to instances
-- Applies to PostgreSQL
BEGIN;
ALTER TABLE instances
ADD COLUMN IF NOT EXISTS status_reason TEXT,
ADD COLUMN IF NOT EXISTS last_operation VARCHAR(50),
ADD COLUMN IF NOT EXISTS last_error TEXT;
COMMIT;