first commit

This commit is contained in:
qwer-xyz
2026-06-20 14:22:31 +08:00
commit c2498911ab
793 changed files with 291660 additions and 0 deletions
@@ -0,0 +1,7 @@
-- Add progress and retryCount fields to RestoreTask
ALTER TABLE "restore_tasks" ADD COLUMN "progress" TEXT;
ALTER TABLE "restore_tasks" ADD COLUMN "retry_count" INTEGER NOT NULL DEFAULT 0;
-- Add progress and retryCount fields to BackupUploadTask
ALTER TABLE "backup_upload_tasks" ADD COLUMN "progress" TEXT;
ALTER TABLE "backup_upload_tasks" ADD COLUMN "retry_count" INTEGER NOT NULL DEFAULT 0;