This commit is contained in:
2026-04-16 17:18:50 +01:00
parent 959465a006
commit b73309e9d5
5 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export default function sqlInsertGenerator({ tableName, data, dbFullName, }) {
? value
: null;
if (!finalValue) {
queryValues.push("");
queryValues.push(null);
return "?";
}
queryValues.push(finalValue);