trails/packages/db/drizzle.config.ts
2026-03-22 22:35:50 +00:00

10 lines
304 B
TypeScript

import { defineConfig } from "drizzle-kit";
export default defineConfig({
schema: ["./src/schema/planner.ts", "./src/schema/journal.ts"],
out: "./migrations",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL ?? "postgres://trails:trails@localhost:5432/trails",
},
});