UNPKG

knex

Version:

A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser

14 lines (10 loc) 234 B
// FunctionHelper // ------- 'use strict'; function FunctionHelper(client) { this.client = client; } FunctionHelper.prototype.now = function () { return this.client.raw('CURRENT_TIMESTAMP'); }; module.exports = FunctionHelper;