mrnodebot
Version:
Your Friendly NodeJS IRC Bot
14 lines (12 loc) • 482 B
JavaScript
exports.up = function (knex, Promise) {
return knex.schema.createTable('greeter', (table) => {
table.collate('utf8mb4_unicode_ci');
table.increments('id').primary();
table.string('nick').collate('utf8mb4_unicode_ci');
table.string('channel').collate('utf8mb4_unicode_ci');
table.timestamp('timestamp').defaultTo(knex.fn.now());
});
};
exports.down = function (knex, Promise) {
return knex.schema.dropTableIfExists('greeter');
};