Explorar o código

Fix db migration error in SQLES

KernelDeimos hai 1 ano
pai
achega
a04cac60e6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/backend/src/om/entitystorage/SQLES.js

+ 1 - 1
packages/backend/src/om/entitystorage/SQLES.js

@@ -219,7 +219,7 @@ class SQLES extends BaseES {
             console.log('SQL STMT', stmt);
             console.log('SQL VALS', execute_vals);
 
-            const res = await db.write(
+            const res = await this.db.write(
                 stmt, execute_vals
             );