UNPKG

mrnodebot

Version:
12 lines (10 loc) 317 B
exports.up = function (knex, Promise) { return knex.schema.table('upvotes', (table) => { table.string('text').nullable().collate('utf8mb4_unicode_ci'); }); }; exports.down = function (knex, Promise) { return knex.schema.table('upvotes', (table) => { table.dropColumns('text'); }); };