From a0a71ca97d819126c139ba7664f349321e19f6f5 Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Fri, 18 Jan 2019 16:34:02 -0500 Subject: [PATCH] give name to db --- app/db.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/db.js b/app/db.js index 2aa2a80..c5a290b 100644 --- a/app/db.js +++ b/app/db.js @@ -5,7 +5,9 @@ import schema from './model/schema' import LpEvent from './model/lpEvents' import Profile from './model/profile' +const dbName = 'LiquidFunding' const adapter = new LokiJSAdapter({ + dbName, schema, })