We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25557c commit 4070a9bCopy full SHA for 4070a9b
src/Controllers/DatabaseController.js
@@ -1005,7 +1005,8 @@ DatabaseController.prototype.performInitialization = function() {
1005
throw error;
1006
});
1007
1008
- const indexPromise = this.adapter.updateSchemaWithIndexes();
+ const indexPromise = this.loadSchema()
1009
+ .then(() => this.adapter.updateSchemaWithIndexes());
1010
1011
// Create tables for volatile classes
1012
const adapterInit = this.adapter.performInitialization({ VolatileClassesSchemas: SchemaController.VolatileClassesSchemas });
0 commit comments