1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/packages/unleash-api/lib/db/dbPool.js
2016-06-18 09:19:57 +02:00

10 lines
204 B
JavaScript

var knex = require('knex');
module.exports = function(databaseConnection) {
return knex({
client: 'pg',
connection: databaseConnection,
pool: { min: 2, max: 20 }
});
};