16 lines
231 B
JavaScript
16 lines
231 B
JavaScript
module.exports = {
|
|
client: 'postgresql',
|
|
connection: {
|
|
database: 'mnml',
|
|
user: 'mnml',
|
|
password: 'gggggggggg',
|
|
},
|
|
pool: {
|
|
min: 2,
|
|
max: 10
|
|
},
|
|
migrations: {
|
|
tableName: 'knex_migrations'
|
|
}
|
|
};
|