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