mirror of
https://github.com/knex/knex.git
synced 2025-07-10 02:20:51 +00:00
9 lines
129 B
JavaScript
9 lines
129 B
JavaScript
// FunctionHelper
|
|
// -------
|
|
module.exports = {
|
|
|
|
now: function() {
|
|
return new this.client.Raw('CURRENT_TIMESTAMP');
|
|
}
|
|
|
|
}; |