mirror of
https://github.com/knex/knex.git
synced 2025-07-08 17:43:24 +00:00
11 lines
144 B
JavaScript
11 lines
144 B
JavaScript
'use strict';
|
|
|
|
// FunctionHelper
|
|
// -------
|
|
module.exports = {
|
|
|
|
now: function() {
|
|
return new this.client.Raw('CURRENT_TIMESTAMP');
|
|
}
|
|
|
|
}; |