knex/lib/functionhelper.js

10 lines
131 B
JavaScript
Raw Normal View History

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