diff --git a/server/setup-database.js b/server/setup-database.js index 43f5c3c4e..0c4083650 100644 --- a/server/setup-database.js +++ b/server/setup-database.js @@ -46,9 +46,14 @@ class SetupDatabase { } catch (e) { log.info("setup-database", "db-config.json is not found or invalid: " + e.message); - // Check if kuma.db is found (1.X.X users) + // Check if kuma.db is found (1.X.X users), generate db-config.json if (fs.existsSync(path.join(Database.dataDir, "kuma.db"))) { this.needSetup = false; + + log.info("setup-database", "kuma.db is found, generate db-config.json"); + Database.writeDBConfig({ + type: "sqlite", + }); } else { this.needSetup = true; }