bookshelf-paranoia
Version:
Soft delete data from your database
13 lines (10 loc) • 320 B
JavaScript
exports.up = (knex) => knex.schema.createTable('articles', (table) => {
table.increments()
table.integer('user_id').references('users.id')
table.string('title')
table.string('body')
table.timestamp('deleted_at')
table.timestamps()
})
exports.down = (knex) => knex.schema.dropTable('articles')