@keltoi/hydra 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -366,7 +366,7 @@ class Migration{
|
|
|
366
366
|
async runMigrations({ entity = Entity, migrations=[async ()=>{}] }){
|
|
367
367
|
const name = entity.name;
|
|
368
368
|
|
|
369
|
-
const { iteration } = await this.#get(name);
|
|
369
|
+
const { iteration } = await this.#get({ name });
|
|
370
370
|
|
|
371
371
|
const listSize = migrations.length;
|
|
372
372
|
|