Major Bugfix

This commit is contained in:
2026-03-22 05:47:54 +01:00
parent bf1c364e36
commit 09430bb561
3 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -21,7 +21,9 @@ export default function dbSchemaToType({
const dbTablesSchemas = datasquirelSchema.tables;
const defDbName = config.db_name?.toUpperCase().replace(/ |\-/g, "_");
const defDbName = config.db_name
?.toUpperCase()
.replace(/[^a-zA-Z0-9]/g, "_");
const defNames: string[] = [];