7489-testToMaster #2515

Merged
alexm merged 329 commits from 7489-testToMaster into master 2024-05-28 05:30:19 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 823e8fd7a1 - Show all commits

View File

@ -67,7 +67,7 @@ module.exports = Self => {
roadmapStop.roadmapFk = clone.id; roadmapStop.roadmapFk = clone.id;
return roadmapStop; return roadmapStop;
}); });
await models.roadmapStop.create(roadmapStops, options); await models.RoadmapStop.create(roadmapStops, options);
} }
await tx.commit(); await tx.commit();

View File

@ -56,7 +56,7 @@
}, },
"roadmapStop": { "roadmapStop": {
"type": "hasMany", "type": "hasMany",
"model": "roadmapStop", "model": "RoadmapStop",
"foreignKey": "roadmapFk" "foreignKey": "roadmapFk"
} }
} }