Merge pull request 'Fix a bug with migrate.ts calling a function incorrectly' (#4) from migrate-bugfix into develop

pull/7/head
knotteye 3 years ago
commit 8a71680971
  1. 4
      src/migrate.ts

@ -4,6 +4,6 @@ import { config } from "./config";
async function run() {
await initDB();
await clean(false);
await clean();
}
run().then(() => {process.exit()});
run().then(() => {process.exit()});