Skip to content

Commit 482f956

Browse files
VIPER-VLADdhmlau
authored andcommitted
feat(sequelize): mssql dialect support
Signed-off-by: VIPER <[email protected]>
1 parent 95916ab commit 482f956

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extensions/sequelize/src/sequelize/connector-mapping.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ export type SupportedLoopbackConnectors =
1010
| 'postgresql'
1111
| 'oracle'
1212
| 'sqlite3'
13-
| 'db2';
13+
| 'db2'
14+
| 'mssql';
1415
/**
1516
* @key Loopback connectors name supported by this extension
1617
* @value Equivalent Dialect in Sequelize
@@ -23,6 +24,7 @@ export const SupportedConnectorMapping: {
2324
oracle: 'oracle',
2425
sqlite3: 'sqlite',
2526
db2: 'db2',
27+
mssql: 'mssql',
2628
};
2729

2830
/**

0 commit comments

Comments
 (0)