mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 17:01:08 +02:00
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
|
|
export default defineConfig({
|
|
dialect: 'postgresql',
|
|
schema: './src/db/schema/index.ts',
|
|
out: './src/db/migrations',
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL || 'postgresql://chat:password@localhost:5432/chat',
|
|
},
|
|
verbose: true,
|
|
strict: true,
|
|
});
|