mrnodebot
Version:
Your Friendly NodeJS IRC Bot
13 lines (11 loc) • 374 B
JavaScript
exports.up = function (knex, Promise) {
return knex.schema.table('mention', (table) => {
table.string('user').collate('utf8mb4_unicode_ci');
table.string('host').collate('utf8mb4_unicode_ci');
});
};
exports.down = function (knex, Promise) {
return knex.schema.table('mention', (table) => {
table.dropColumns('user', 'host');
});
};