mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 09:52:00 +00:00
18 lines
394 B
JavaScript
18 lines
394 B
JavaScript
const { knexSnakeCaseMappers } = require('objection');
|
|
|
|
module.exports = {
|
|
client: 'mysql',
|
|
connection: {
|
|
host: '127.0.0.1',
|
|
user: 'root',
|
|
password: 'root',
|
|
database: 'bigcapital_tenant_hqde5zqkylsho06',
|
|
charset: 'utf8',
|
|
},
|
|
migrations: {
|
|
directory: './src/database/migrations',
|
|
},
|
|
pool: { min: 0, max: 7 },
|
|
...knexSnakeCaseMappers({ upperCase: true }),
|
|
};
|