mnml/ops/knexfile.js
2018-09-13 17:21:49 +10:00

24 lines
333 B
JavaScript
Executable File

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