mirror of
https://github.com/fergalmoran/opengifame.git
synced 2025-12-22 09:38:44 +00:00
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
import { type Config } from "drizzle-kit";
|
|
|
|
import { env } from "@/env";
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema.ts",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: env.DATABASE_URL,
|
|
},
|
|
tablesFilter: ["*"],
|
|
} satisfies Config;
|