wine-shop/drizzle.config.ts
christian 17c0c0e853
Some checks failed
Vercel Production Deployment / Deploy-Production (push) Failing after 43s
CreateWine is sort of working. It's not pushing producer id though
2024-05-24 12:01:58 +02:00

12 lines
273 B
TypeScript

import { type Config } from "drizzle-kit";
import "./src/server/db/envConfig"
export default {
schema: "./src/server/db/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: process.env.POSTGRES_URL!,
},
tablesFilter: ["wine-shop_*"],
} satisfies Config;