UNPKG

sharyn

Version:

Combines all the other packages under one.

9 lines (7 loc) 261 B
"use strict"; var standardCols = function standardCols(knex, t) { t.uuid('id').primary(); t.timestamp('createdAt').notNullable().defaultTo(knex.fn.now()); t.timestamp('updatedAt').notNullable().defaultTo(knex.fn.now()); }; module.exports = standardCols;