mnml/ops/knexfile.SAMPLE.js
2019-09-14 19:46:14 +10:00

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'
}
};