Fix a bug with migrate.ts calling a function incorrectly

This commit is contained in:
knotteye 2020-10-18 09:13:09 +00:00
parent 34d6fa91df
commit 0900496d70

View File

@ -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()});