UNPKG

bookshelf-paranoia

Version:
12 lines (9 loc) 295 B
'use strict' exports.up = (knex) => knex.schema.createTable('sessions', (table) => { table.increments() table.integer('user_id').references('users.id') table.text('token') table.timestamp('deleted_at') table.timestamps() }) exports.down = (knex) => knex.schema.dropTable('sessions')