knex/lib/functionhelper.js
Pelle Wessman bdc3b43655 Added a function helper collection
To make it possible for individual dialects to provide their own variant of common SQL-functions like NOW()
2014-07-18 12:41:23 +02:00

10 lines
131 B
JavaScript

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