We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95916ab commit 482f956Copy full SHA for 482f956
extensions/sequelize/src/sequelize/connector-mapping.ts
@@ -10,7 +10,8 @@ export type SupportedLoopbackConnectors =
10
| 'postgresql'
11
| 'oracle'
12
| 'sqlite3'
13
- | 'db2';
+ | 'db2'
14
+ | 'mssql';
15
/**
16
* @key Loopback connectors name supported by this extension
17
* @value Equivalent Dialect in Sequelize
@@ -23,6 +24,7 @@ export const SupportedConnectorMapping: {
23
24
oracle: 'oracle',
25
sqlite3: 'sqlite',
26
db2: 'db2',
27
+ mssql: 'mssql',
28
};
29
30
0 commit comments