mnml/ops/knexfile.js
2019-05-25 15:52:37 +10:00

24 lines
331 B
JavaScript
Executable File

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