summaryrefslogtreecommitdiff
path: root/drizzle.config.ts
blob: 6da96b8e460912ca9591ab766be0ad41d3ba559d (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"
  },

});