UNPKG

botpress

Version:

The world's first CMS for bots. Easily create, manage and extend chatbots.

10 lines (8 loc) 209 B
exports.up = knex => knex.schema.table('ghost_content', t => { t.boolean('deleted').defaultTo(0) }) exports.down = knex => knex.schema.table('ghost_content', t => { t.dropColumn('deleted') })