managarten/mana-core-auth/drizzle.config.ts
2025-11-25 18:56:35 +01:00

12 lines
324 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://manacore:password@localhost:5432/manacore',
},
verbose: true,
strict: true,
});