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 21:55:46 +02:00

11 lines
221 B
JavaScript

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