exports.down = knex => (
  knex.schema.table(EVENT_TABLE, (table) => {
    table.dropColumn('version');
  })
);