From 68f175d3be96c000d834bbdea6eda15316c9da27 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Wed, 15 Apr 2026 06:04:29 +0200 Subject: [PATCH] fix: correct schema path in drizzle config --- apps/web/drizzle.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/drizzle.config.ts b/apps/web/drizzle.config.ts index 3a424e3f..f3c4b357 100644 --- a/apps/web/drizzle.config.ts +++ b/apps/web/drizzle.config.ts @@ -13,7 +13,7 @@ if (!databaseUrl) { } export default { - schema: "./src/schema.ts", + schema: "./src/lib/db/schema.ts", dialect: "postgresql", migrations: { table: "drizzle_migrations",