UNPKG

mrnodebot

Version:
13 lines (11 loc) 374 B
exports.up = function (knex, Promise) { return knex.schema.table('upvotes', (table) => { table.string('user').collate('utf8mb4_unicode_ci'); table.string('host').collate('utf8mb4_unicode_ci'); }); }; exports.down = function (knex, Promise) { return knex.schema.table('upvotes', (table) => { table.dropColumns('user', 'host'); }); };