18 lines
304 B
TypeScript
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',
|
|
},
|
|
});
|