fix: Upload with new storage backend system.

This commit is contained in:
charlesgauthereau
2026-01-17 20:56:57 +01:00
parent 424fa581b9
commit 53f82792d8
16 changed files with 2395 additions and 555 deletions
@@ -0,0 +1 @@
ALTER TABLE "backups" ADD COLUMN "imported" boolean DEFAULT false;
File diff suppressed because it is too large Load Diff
+7
View File
@@ -190,6 +190,13 @@
"when": 1768665081232,
"tag": "0026_demonic_santa_claus",
"breakpoints": true
},
{
"idx": 27,
"version": "7",
"when": 1768676733859,
"tag": "0027_special_the_santerians",
"breakpoints": true
}
]
}
+1
View File
@@ -41,6 +41,7 @@ export const backup = pgTable(
databaseId: uuid("database_id")
.notNull()
.references(() => database.id, {onDelete: "cascade"}),
imported: boolean('imported').default(false),
...timestamps
},
);