Skip to content
This repository was archived by the owner on Jan 17, 2019. It is now read-only.

Commit 190b8e0

Browse files
committed
Fix-[BoolJSNoModel#fetchModels] Incorrect order of parameters
1 parent 8d17a21 commit 190b8e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = class BoolJSNoModel extends DatabaseLoader {
1616
modelClass () { return NoModel; }
1717

1818
/** @ignore */
19-
async fetchModels (connection, Model, instance) {
19+
async fetchModels (instance, name, Model) {
2020
let modelClass = this.modelClass();
2121
return class extends modelClass {
2222
constructor (...params) {

0 commit comments

Comments
 (0)