UNPKG

botpress

Version:

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

10 lines (8 loc) 205 B
exports.up = knex => knex.schema.table('users', t => { t.unique(['platform', 'userId']) }) exports.down = knex => knex.schema.table('users', t => { t.dropUnique(['platform', 'userId']) })