mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-08 12:04:52 +10:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
import { defineConfig } from "drizzle-kit";
|
|
|
|
export default defineConfig({
|
|
out: "./migrations",
|
|
dialect: "postgresql",
|
|
schema: "./src/integrations/drizzle/schema.ts",
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL,
|
|
},
|
|
});
|