blob: 93b6e10d46de49eaaec405828fbe22181da7e341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: "./db/migrations", // 마이그레이션 파일 생성 경로
schema: "./db/schema/index.ts",
dialect: 'postgresql',
dbCredentials: {
// url: process.env.DATABASE_URL!,
url: "postgresql://dts:dujinDTS2@localhost:5432/evcp"
},
});
|