Fix: Add updated_at and deleted_at columns to backups migration (TenantMixin)

This commit is contained in:
Agent Zero
2026-07-26 03:22:40 +02:00
parent 79ece0fe2e
commit 0571cc8193
+3 -1
View File
@@ -36,7 +36,9 @@ def upgrade() -> None:
error_message TEXT,
created_by UUID,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
completed_at TIMESTAMPTZ
completed_at TIMESTAMPTZ,
updated_at TIMESTAMPTZ,
deleted_at TIMESTAMPTZ
)
"""
)