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.binary('binary_content') }) exports.down = knex => knex.schema.table('ghost_content', t => { t.dropColumn('binary_content') })