const up = () => {
  migrations.forEach((m) => {
    console.info(`UP: ${m.title}`);
    m.up();
  });