connection: { // the connection sub document is passed directly to mssql
server: 'localhost',
port: 1433,
database: 'dbo',
user: 'sa',
password: 'tmpPassword2',
}
If the database does not exist, it is not automatically created. It must exist prior to the migration scripts being run. Can this behavior be changed?
Also, Host does not work. Had to change it to Sever to get it to connect.
connection: { // the connection sub document is passed directly to mssql
server: 'localhost',
port: 1433,
database: 'dbo',
user: 'sa',
password: 'tmpPassword2',
}
If the database does not exist, it is not automatically created. It must exist prior to the migration scripts being run. Can this behavior be changed?
Also, Host does not work. Had to change it to Sever to get it to connect.