Files
2026-07-13 12:10:05 +08:00

18 lines
304 B
TypeScript

import { defineConfig } from '../../src';
export default defineConfig({
schema: './schema.ts',
dialect: 'postgresql',
dbCredentials: {
host: '127.0.0.1',
port: 5432,
user: 'postgresql',
password: 'postgres',
database: 'db',
},
migrations: {
schema: 'custom',
table: 'custom',
},
});