bcgov/common-forms-toolkit

View on GitHub
app/src/db/stamps.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = (knex, table) => {
  table.string('createdBy').defaultTo('public');
  table.timestamp('createdAt', {useTz: true}).defaultTo(knex.fn.now());
  table.string('updatedBy');
  table.timestamp('updatedAt', {useTz: true}).defaultTo(knex.fn.now());
};