fix: update migrations output path in Drizzle configuration

This commit is contained in:
Mathis H (Avnyr) 2025-05-15 18:09:29 +02:00
parent 63458333ca
commit d15bf3fe90

View File

@ -11,7 +11,7 @@ import * as process from "node:process";
export default defineConfig({
schema: './src/database/schema/index.ts',
out: './src/database/migrations',
out: './src/database/migrations/sql',
dialect: "postgresql",
dbCredentials: {
host: String(process.env.POSTGRES_HOST || "localhost"),