From 0900496d7096a52264883753dc4ba13523c265e1 Mon Sep 17 00:00:00 2001 From: knotteye Date: Sun, 18 Oct 2020 09:13:09 +0000 Subject: [PATCH] Fix a bug with migrate.ts calling a function incorrectly --- src/migrate.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/migrate.ts b/src/migrate.ts index 06284c4..0e3cf14 100644 --- a/src/migrate.ts +++ b/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()}); \ No newline at end of file +run().then(() => {process.exit()});