Explorar el Código

Fix db migration error in SQLES

KernelDeimos hace 1 año
padre
commit
a04cac60e6
Se han modificado 1 ficheros con 1 adiciones y 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
             );