From ddfeb5ccb50cdc3697a78207fa6c2577b0c28047 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Mon, 8 Sep 2025 16:07:47 -0500 Subject: [PATCH] fix(db): fixes to drizzle config to account for the change to the app structure folder --- drizzle.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drizzle.config.ts b/drizzle.config.ts index 3e4f405..2315d7b 100644 --- a/drizzle.config.ts +++ b/drizzle.config.ts @@ -4,7 +4,7 @@ const dbURL = `postgres://${process.env.DATABASE_USER}:${process.env.DATABASE_PA export default defineConfig({ dialect: "postgresql", - schema: "./dist/pkg/db/schema", + schema: "./dist/src/pkg/db/schema", out: "./migrations", dbCredentials: { url: dbURL }, // verbose: true, // optional, logs more details