knex/lib/functionhelper.js
2014-09-01 17:19:34 +02:00

11 lines
144 B
JavaScript

'use strict';
// FunctionHelper
// -------
module.exports = {
now: function() {
return new this.client.Raw('CURRENT_TIMESTAMP');
}
};