UNPKG

knex

Version:

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

12 lines (9 loc) 214 B
// FunctionHelper // ------- function FunctionHelper(client) { this.client = client } FunctionHelper.prototype.now = function() { return this.client.raw('CURRENT_TIMESTAMP') } module.exports = FunctionHelper