// Update with your config settings. const local = { client: 'postgresql', connection: { database: 'constructs', user: 'constructs', password: 'craftbeer' }, pool: { min: 2, max: 10 }, migrations: { tableName: 'knex_migrations' } }; module.exports = { development: local, production: local, };