UNPKG

mrnodebot

Version:
15 lines (13 loc) 528 B
exports.up = function (knex, Promise) { return knex.schema.createTable('url', (table) => { table.collate('utf8mb4_unicode_ci'); table.increments('id').primary(); table.string('url').collate('utf8mb4_unicode_ci'); table.string('to').collate('utf8mb4_unicode_ci'); table.string('from').collate('utf8mb4_unicode_ci'); table.timestamp('timestamp').defaultTo(knex.fn.now()); }); }; exports.down = function (knex, Promise) { return knex.schema.dropTableIfExists('url'); };