diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-11-07 20:55:06 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-11-07 20:55:06 -0800 |
commit | bd29cc0c16567df3bafe95f4d02cdbf741547e99 (patch) | |
tree | 3a329331cbe006b61a2d8b0049f4477f69761075 /ext/bg/js/database.js | |
parent | 5ad4782bfb6db09e55fffba6057d42c1022d930e (diff) |
WIP
Diffstat (limited to 'ext/bg/js/database.js')
-rw-r--r-- | ext/bg/js/database.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/bg/js/database.js b/ext/bg/js/database.js index 7cf92c44..79a0a7a1 100644 --- a/ext/bg/js/database.js +++ b/ext/bg/js/database.js @@ -20,7 +20,7 @@ class Database { constructor() { this.db = null; - this.dbVer = 7; + this.dbVer = 6; this.entities = null; } @@ -37,6 +37,8 @@ class Database { dictionaries: '++, title, version', meta: 'name, value', }); + + return Promise.resolve(); } prepare() { |