UNPKG

211 BJavaScriptView Raw
1module.exports = (knex, t) => {
2 t.uuid('id').primary()
3 t.timestamp('createdAt')
4 .notNullable()
5 .defaultTo(knex.fn.now())
6 t.timestamp('updatedAt')
7 .notNullable()
8 .defaultTo(knex.fn.now())
9}