fix(mysql): increase max media size restricted from 16kb to 4gb (#3839)

This commit is contained in:
Meier Lukas
2025-08-14 21:12:56 +02:00
committed by GitHub
parent c72c154305
commit 7ffcd1a08e
4 changed files with 2102 additions and 1 deletions

View File

@@ -42,7 +42,7 @@ import type {
const customBlob = customType<{ data: Buffer }>({
dataType() {
return "BLOB";
return "LONGBLOB"; // Has max size of 4GB
},
});