new(kb.gblib): added postgres.
This commit is contained in:
parent
41803803d5
commit
f6a1cf2820
1 changed files with 2 additions and 2 deletions
|
@ -2143,9 +2143,9 @@ export class SystemKeywords {
|
|||
const parts = file.split('.');
|
||||
const con = min[parts[0]];
|
||||
if (con) {
|
||||
return con.models[parts[1]];
|
||||
return con.models[parts[1].toLowerCase()];
|
||||
} else {
|
||||
return minBoot.core.sequelize.models[file];
|
||||
return minBoot.core.sequelize.models[file.toLowerCase()];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue