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