Skip to content

Commit

Permalink
fix: example config
Browse files Browse the repository at this point in the history
  • Loading branch information
zetxx committed Jul 29, 2022
1 parent a830b7f commit d274fbb
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions examples/example.mssql.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
module.exports = {
server: 'localhost',
user: 'sa',
password: '*******',
database: 'migration-test',
pool: {
max: 10,
min: 0,
idleTimeoutMillis: 30000
connect: {
server: 'localhost',
user: 'sa',
password: '***',
database: 'mfactor',
pool: {
max: 10,
min: 0,
idleTimeoutMillis: 60000
},
options: {
encrypt: true, // for azure
trustServerCertificate: true // change to true for local dev / self-signed certs
}
},
options: {
encrypt: true, // for azure
trustServerCertificate: true // change to true for local dev / self-signed certs
link: {
SP: {
schemas: ['a', 'b'] // schemas allowed
}
}
};

0 comments on commit d274fbb

Please sign in to comment.