mailtrain/server/lib/knex.js

26 lines
619 B
JavaScript

'use strict';
const config = require('config');
const moment = require('moment');
const knex = require('knex')({
client: 'mysql2',
connection: {
...config.mysql,
// DATE and DATETIME types contain no timezone info. The MySQL driver tries to interpret them w.r.t. to local time, which
// does not work well with assigning these values in UTC and handling them as if in UTC
dateStrings: [
'DATE',
'DATETIME'
]
},
migrations: {
directory: __dirname + '/../setup/knex/migrations'
}
//, debug: true
});
module.exports = knex;