@keltoi/hydra 2.3.3 → 2.3.4
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 +3 -9
- package/package.json +2 -4
package/index.js
CHANGED
|
@@ -358,10 +358,7 @@ class Migration{
|
|
|
358
358
|
.#db('migration')
|
|
359
359
|
.where({ name })
|
|
360
360
|
.update({ iteration })
|
|
361
|
-
|
|
362
|
-
#create = ({ iteration=0,name='' })=>this
|
|
363
|
-
.#db('migration')
|
|
364
|
-
.insert({ iteration,name })
|
|
361
|
+
.catch(()=>this.#db('migration').insert({ iteration,name }))
|
|
365
362
|
|
|
366
363
|
async runMigrations({ entity = Entity, migrations=[async ()=>{}] }){
|
|
367
364
|
const name = entity.name;
|
|
@@ -372,12 +369,9 @@ class Migration{
|
|
|
372
369
|
|
|
373
370
|
if (iteration >= listSize) return
|
|
374
371
|
|
|
375
|
-
for (let index = iteration; index < listSize; index++)
|
|
376
|
-
await migrations[index]();
|
|
377
|
-
}
|
|
372
|
+
for (let index = iteration; index < listSize; index++) await migrations[index]();
|
|
378
373
|
|
|
379
|
-
|
|
380
|
-
else await this.#update({ iteration:listSize,name });
|
|
374
|
+
await this.#update({ iteration:listSize,name });
|
|
381
375
|
}
|
|
382
376
|
|
|
383
377
|
static structMe(db=knex()){
|
package/package.json
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keltoi/hydra",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "Boilerplate to start your API from zero using Repository Pattern",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
7
|
-
"files": [
|
|
8
|
-
"index.js"
|
|
9
|
-
],
|
|
7
|
+
"files": [ "index.js" ],
|
|
10
8
|
"type": "module",
|
|
11
9
|
"scripts": {
|
|
12
10
|
"test": "npm run build & npm link",
|