This commit is contained in:
Dax Raad
2026-01-16 15:13:00 -05:00
parent a4183c3b2c
commit 38f735bfc6
17 changed files with 277 additions and 118 deletions
View File
+1 -1
View File
@@ -31,7 +31,7 @@ export const migrations: { name: string; sql: string }[] = []
process.exit(0)
}
const imports = files.map((f, i) => `import m${i} from "../../drizzle/${f}" with { type: "text" }`).join("\n")
const imports = files.map((f, i) => `import m${i} from "../../migration/${f}" with { type: "text" }`).join("\n")
const entries = files.map((f, i) => ` { name: "${path.basename(f, ".sql")}", sql: m${i} },`).join("\n")
View File
View File