From e023d0236e9911b1d318f3448f661f6098568c29 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Fri, 6 Nov 2015 19:09:26 -0700 Subject: [PATCH] * Fix accidental delete of user db line --- core/database.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/database.js b/core/database.js index b5d11af0..0fefffea 100644 --- a/core/database.js +++ b/core/database.js @@ -40,6 +40,7 @@ function initializeDatabases(cb) { callback(err); } else { dbs.user.serialize(function serialized() { + createUserTables(); createInitialUserValues(); }); callback(null);